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

Commit d785e785 authored by Raff Tsai's avatar Raff Tsai
Browse files

Fix PendingIntent CanceledException exception

- b/142107748 has more context

Fixes: 143267879
Test: manual
Change-Id: I3a5446febc09006fd07986c13e0a150cf89e84fd
parent cd216b1d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -164,7 +164,7 @@ public class MediaOutputSlice implements CustomSliceable {
        intent.putExtra(MEDIA_DEVICE_ID, id);
        intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
        return PendingIntent.getBroadcast(context, requestCode /* requestCode */, intent,
                PendingIntent.FLAG_CANCEL_CURRENT);
                PendingIntent.FLAG_UPDATE_CURRENT);
    }

    @Override