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

Commit a6f3c745 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Flip order of start/finish" into main

parents c85e48b0 a2ca4872
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -110,9 +110,10 @@ public class ZenModeFragment extends ZenModeFragmentBase {
        if (mode == null || mode.getStatus() != DISABLED_BY_OTHER) {
            return false;
        }

        mContext.startActivity(SetupInterstitialActivity.getIntent(mContext, mode));
        // don't come back here from the interstitial
        finish();
        mContext.startActivity(SetupInterstitialActivity.getIntent(mContext, mode));
        return true;
    }