Add userId to StatusBarNotification key

Change-Id: Id2db95ec128b364c8a7df1272b2ee3144e3da3de
This commit is contained in:
Christoph Studer
2014-04-30 17:32:52 +02:00
parent 36c492cf1a
commit ff8dbe52eb

View File

@@ -87,7 +87,7 @@ public class StatusBarNotification implements Parcelable {
}
private String key() {
return pkg + '|' + id + '|' + tag + '|' + uid;
return user.getIdentifier() + "|" + pkg + "|" + id + "|" + tag + "|" + uid;
}
public void writeToParcel(Parcel out, int flags) {