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

Commit 4a99e98b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents 70cc54bd 989157e1
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);