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

Commit 8fbf1ecc 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

am: ce0f7f59

Change-Id: I1e4c12e90d7457c564ba0a453460e0bc6887db2b
parents 2bde2080 ce0f7f59
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);