diff --git a/src/android/ForegroundService.java b/src/android/ForegroundService.java index b38cf92..d3f2c73 100644 --- a/src/android/ForegroundService.java +++ b/src/android/ForegroundService.java @@ -240,7 +240,7 @@ public class ForegroundService extends Service { intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP); PendingIntent contentIntent = PendingIntent.getActivity( context, NOTIFICATION_ID, intent, - PendingIntent.FLAG_UPDATE_CURRENT & PendingIntent.FLAG_IMMUTABLE); + PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE); notification.setContentIntent(contentIntent);