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

Commit 7284e4f5 authored by Fabian Kozynski's avatar Fabian Kozynski
Browse files

Notify FSC about app ops in main thread

Test: build
Bug: 131188506
Change-Id: I7c73344d65ac0322c32ad13e6f81ad52c7b629d7
parent 18184f9c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -596,8 +596,8 @@ public class StatusBar extends SystemUI implements DemoMode,

    @Override
    public void onActiveStateChanged(int code, int uid, String packageName, boolean active) {
        mForegroundServiceController.onAppOpChanged(code, uid, packageName, active);
        Dependency.get(MAIN_HANDLER).post(() -> {
            mForegroundServiceController.onAppOpChanged(code, uid, packageName, active);
            mNotificationListController.updateNotificationsForAppOp(code, uid, packageName, active);
        });
    }