Merge "Fix hiding of channel fields" into qt-dev

am: c14825c93d

Change-Id: Iac8ac8a6322872a3d77738b95a465ec39e144cab
This commit is contained in:
Julia Reynolds
2019-05-22 00:55:59 -07:00
committed by android-build-merger
2 changed files with 6 additions and 2 deletions

View File

@@ -74,7 +74,9 @@ public abstract class NotificationPreferenceController extends AbstractPreferenc
return false;
}
if (mChannelGroup != null) {
return !mChannelGroup.isBlocked();
if (mChannelGroup.isBlocked()) {
return false;
}
}
if (mChannel != null) {
return mChannel.getImportance() != IMPORTANCE_NONE;