mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 14:15:44 +03:00
Use notificationID as requestcode to allow multiple android notifications
Signed-off-by: Adam <adam.feakin@gmail.com>
This commit is contained in:
parent
f184fa0386
commit
fc155f0ba8
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ public class DeckApiImpl implements DeckApi {
|
||||||
|
|
||||||
private PendingIntent createPendingIntent(@NonNull Intent intent, @NonNull Notification notification, @NonNull User user) {
|
private PendingIntent createPendingIntent(@NonNull Intent intent, @NonNull Notification notification, @NonNull User user) {
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
return PendingIntent.getActivity(context, 0, putExtrasToIntent(intent, notification, user),
|
return PendingIntent.getActivity(context, notification.getNotificationId(), putExtrasToIntent(intent, notification, user),
|
||||||
PendingIntent.FLAG_ONE_SHOT);
|
PendingIntent.FLAG_ONE_SHOT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -156,7 +156,7 @@ class NotificationWork constructor(
|
||||||
}
|
}
|
||||||
intent.putExtra(KEY_NOTIFICATION_ACCOUNT, user.accountName)
|
intent.putExtra(KEY_NOTIFICATION_ACCOUNT, user.accountName)
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
|
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
|
||||||
pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_ONE_SHOT)
|
pendingIntent = PendingIntent.getActivity(context, notification.getNotificationId(), intent, PendingIntent.FLAG_ONE_SHOT)
|
||||||
}
|
}
|
||||||
|
|
||||||
val pushNotificationId = randomId.nextInt()
|
val pushNotificationId = randomId.nextInt()
|
||||||
|
|
Loading…
Reference in a new issue