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

Commit ce0f7f59 authored by Svet Ganov's avatar Svet Ganov Committed by android-build-merger
Browse files

Merge "Dispatch global settings changes to all users." into pi-dev

am: 4a99e98b

Change-Id: Icb07bd1eba4b9ff559e5cf66a94382d24d057501
parents c541ff07 4a99e98b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2774,7 +2774,9 @@ public class SettingsProvider extends ContentProvider {
        }

        private void notifyForSettingsChange(int key, String name) {
            final int userId = getUserIdFromKey(key);
            final int userId = isGlobalSettingsKey(key)
                    ? UserHandle.USER_ALL : getUserIdFromKey(key);

            Uri uri = getNotificationUriFor(key, name);

            mGenerationRegistry.incrementGeneration(key);