Skip to content

Commit a9407e3

Browse files
authored
Correctly set FLAG_IMMUTABLE for error screen PendingIntent (#653)
1 parent 515b3f0 commit a9407e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/main/java/com/chuckerteam/chucker/internal/support/NotificationHelper.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ internal class NotificationHelper(val context: Context) {
5757
context,
5858
ERROR_NOTIFICATION_ID,
5959
Chucker.getLaunchIntent(context, Chucker.SCREEN_ERROR),
60-
PendingIntent.FLAG_UPDATE_CURRENT
60+
PendingIntent.FLAG_UPDATE_CURRENT or immutableFlag()
6161
)
6262
}
6363

0 commit comments

Comments
 (0)