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

Commit 2d457e60 authored by Jeffrey Huang's avatar Jeffrey Huang Committed by Automerger Merge Worker
Browse files

Merge "Fix InvalidProtoWireException" into sc-dev am: 19943bde

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14431464

Change-Id: I43230812f3a83ed924734bc9ea71136b8985cdc4
parents 83029a17 19943bde
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -659,7 +659,8 @@ public class ZenModeHelper {
                mConfig.manualRule.dumpDebug(proto, ZenModeProto.ENABLED_ACTIVE_CONDITIONS);
            }
            for (ZenRule rule : mConfig.automaticRules.values()) {
                if (rule.enabled && rule.condition.state == Condition.STATE_TRUE
                if (rule.enabled && rule.condition != null
                        && rule.condition.state == Condition.STATE_TRUE
                        && !rule.snoozing) {
                    rule.dumpDebug(proto, ZenModeProto.ENABLED_ACTIVE_CONDITIONS);
                }