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

Commit a9092f05 authored by Jainam Shah's avatar Jainam Shah Committed by Automerger Merge Worker
Browse files

Merge "Fix crash due to missing CentralSurfaces" into tm-qpr-dev am: 5917ed11 am: 2880a3c4

parents 7b66ed94 2880a3c4
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -631,7 +631,9 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
        final NavigationBarView navBarView =
                mNavBarControllerLazy.get().getNavigationBarView(mContext.getDisplayId());
        final NotificationPanelViewController panelController =
                mCentralSurfacesOptionalLazy.get().get().getNotificationPanelViewController();
                mCentralSurfacesOptionalLazy.get()
                        .map(CentralSurfaces::getNotificationPanelViewController)
                        .orElse(null);
        if (SysUiState.DEBUG) {
            Log.d(TAG_OPS, "Updating sysui state flags: navBarFragment=" + navBarFragment
                    + " navBarView=" + navBarView + " panelController=" + panelController);