Merge "Fix the non-working DND toggle" into sc-dev am: 53124fa7b3

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/15109294

Change-Id: If3fd05f043efd6adcbc74e13478a5acffbe5735d
This commit is contained in:
TreeHugger Robot
2021-06-29 06:48:02 +00:00
committed by Automerger Merge Worker

View File

@@ -150,6 +150,6 @@ public class ZenModeSliceBuilder {
final Intent intent = new Intent(ACTION_ZEN_MODE_SLICE_CHANGED)
.setClass(context, SliceBroadcastReceiver.class);
return PendingIntent.getBroadcast(context, 0 /* requestCode */, intent,
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_IMMUTABLE);
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_MUTABLE);
}
}