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

Commit 334bd70f authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed build breakage due to api change.

Bug: 16239208
Change-Id: I9c2b13d3687f9f61307e0c13b6940425faebfa9f
parent 3a84d401
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ import android.os.Handler;
import android.os.Message;
import android.os.RemoteException;
import android.os.ServiceManager;
import android.os.UserHandle;
import android.service.notification.Condition;
import android.service.notification.IConditionListener;
import android.service.notification.ZenModeConfig;
@@ -61,7 +62,7 @@ public class ZenModeConditionSelection extends RadioGroup {
        b.setChecked(true);
        for (int i = ZenModeConfig.MINUTE_BUCKETS.length - 1; i >= 0; --i) {
            handleCondition(ZenModeConfig.toTimeCondition(mContext,
                    ZenModeConfig.MINUTE_BUCKETS[i]));
                    ZenModeConfig.MINUTE_BUCKETS[i], UserHandle.myUserId()));
        }
    }