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

Commit 54b05ac5 authored by Dave Mankoff's avatar Dave Mankoff
Browse files

PerUser CoreStartables for Primary User.

Ensure that per-user CoreStartables start for primary user. Before
this, they were only being instantiated for the secondary user.

Fixes: 220127711
Test: manual
Change-Id: I75c72b9e93eefa970ef19bf158f7a0419493a1b6
parent 94927c65
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -192,6 +192,7 @@ public class SystemUIApplication extends Application implements
        Map<Class<?>, Provider<CoreStartable>> sortedStartables = new TreeMap<>(
                Comparator.comparing(Class::getName));
        sortedStartables.putAll(SystemUIFactory.getInstance().getStartableComponents());
        sortedStartables.putAll(SystemUIFactory.getInstance().getStartableComponentsPerUser());
        startServicesIfNeeded(
                sortedStartables, "StartServices", vendorComponent);
    }