]> git.eshelyaron.com Git - emacs.git/commitdiff
Repair desktop notification on Android 31
authorPo Lu <luangruo@yahoo.com>
Tue, 22 Aug 2023 00:04:16 +0000 (08:04 +0800)
committerPo Lu <luangruo@yahoo.com>
Tue, 22 Aug 2023 00:04:16 +0000 (08:04 +0800)
* java/org/gnu/emacs/EmacsDesktopNotification.java (display1):
Provide FLAG_IMMUTABLE under Android S and later, not just
versions of Android after S.  (bug#65433)

java/org/gnu/emacs/EmacsDesktopNotification.java

index c6ebbc6ae4826f22b97693d417c04901962de8f5..121d8f481a2fb9636ad9bcd15b353244ebe7643f 100644 (file)
@@ -144,7 +144,7 @@ public final class EmacsDesktopNotification
     intent = new Intent (context, EmacsActivity.class);
     intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK);
 
-    if (Build.VERSION.SDK_INT > Build.VERSION_CODES.S)
+    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S)
       pending = PendingIntent.getActivity (context, 0, intent,
                                           PendingIntent.FLAG_IMMUTABLE);
     else