Merge "Add null check on NPVC" into sc-dev

This commit is contained in:
TreeHugger Robot
2021-06-10 13:22:35 +00:00
committed by Android (Google) Code Review

View File

@@ -2535,7 +2535,9 @@ public class NotificationPanelViewController extends PanelViewController {
break;
case FLING_HIDE:
default:
mQs.closeDetail();
if (mQs != null) {
mQs.closeDetail();
}
target = 0;
}
if (target == mQsExpansionHeight) {