diff options
Diffstat (limited to 'java')
| -rw-r--r-- | java/org/gnu/emacs/EmacsDesktopNotification.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/java/org/gnu/emacs/EmacsDesktopNotification.java b/java/org/gnu/emacs/EmacsDesktopNotification.java index f52c3d9d4fb..d05ed2e6203 100644 --- a/java/org/gnu/emacs/EmacsDesktopNotification.java +++ b/java/org/gnu/emacs/EmacsDesktopNotification.java | |||
| @@ -281,11 +281,9 @@ public final class EmacsDesktopNotification | |||
| 281 | 281 | ||
| 282 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) | 282 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) |
| 283 | pending = PendingIntent.getBroadcast (context, 0, intent, | 283 | pending = PendingIntent.getBroadcast (context, 0, intent, |
| 284 | (PendingIntent.FLAG_IMMUTABLE | 284 | PendingIntent.FLAG_IMMUTABLE); |
| 285 | | PendingIntent.FLAG_ONE_SHOT)); | ||
| 286 | else | 285 | else |
| 287 | pending = PendingIntent.getBroadcast (context, 0, intent, | 286 | pending = PendingIntent.getBroadcast (context, 0, intent, 0); |
| 288 | PendingIntent.FLAG_ONE_SHOT); | ||
| 289 | 287 | ||
| 290 | notification.deleteIntent = pending; | 288 | notification.deleteIntent = pending; |
| 291 | manager.notify (tag, 2, notification); | 289 | manager.notify (tag, 2, notification); |