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

Commit acb8dfe0 authored by Jason Monk's avatar Jason Monk
Browse files

Allow downtime to exit from no interruptions

Since the user can specify it to exit from no interruptions, it
needs to actually exit.

Bug: 17331112
Change-Id: I9a8412e5b42af17e79798f5ea4bcf3e19924cc93
parent f6478d4c
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -545,8 +545,9 @@ public class ConditionProviders extends ManagedServices {
                setZenModeCondition(condition, "downtime");
            }
            // exit downtime
            if (!inDowntime && mode == Global.ZEN_MODE_IMPORTANT_INTERRUPTIONS
                    && mDowntime.isDowntimeCondition(mExitCondition)) {
            if (!inDowntime && mDowntime.isDowntimeCondition(mExitCondition)
                    && (mode == Global.ZEN_MODE_IMPORTANT_INTERRUPTIONS
                                || mode == Global.ZEN_MODE_NO_INTERRUPTIONS)) {
                mZenModeHelper.setZenMode(Global.ZEN_MODE_OFF, "downtimeExit");
            }
        }