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

Commit 28655c60 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

chore: try to fix fix PendingIntent.FLAG_ONE_SHOT

parent 5fdf8a43
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_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE)
            PendingIntent.FLAG_ONE_SHOT or PendingIntent.FLAG_UPDATE_CURRENT)
    }
}