Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5abdc22 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

fix: add immutable flag for pending intent

parent c1eb2d14
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -81,6 +81,6 @@ class BootCompletedReceiver: BroadcastReceiver() {
        return  PendingIntent.getActivity(context,
            0,
            reLoginIntent,
            PendingIntent.FLAG_ONE_SHOT or PendingIntent.FLAG_UPDATE_CURRENT)
            PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE)
    }
}