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

Commit e57d36d4 authored by Julia Reynolds's avatar Julia Reynolds
Browse files

Add flag for pendingintent

Test: make
Fixes: 170422191
Change-Id: I9e803606034c04cad5a0e0db1d9c6d115fab2210
parent be75d517
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2240,7 +2240,8 @@ public class Notification implements Parcelable
                .setTicker(tickerText)
                .setContentTitle(contentTitle)
                .setContentText(contentText)
                .setContentIntent(PendingIntent.getActivity(context, 0, contentIntent, 0))
                .setContentIntent(PendingIntent.getActivity(
                        context, 0, contentIntent, PendingIntent.FLAG_MUTABLE))
                .buildInto(this);
    }