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

Commit 9e6836d7 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by android-build-merger
Browse files

Merge "Better public volumes handling on secondary users." into pi-dev

am: 4abf0f70

Change-Id: Ibf736f62f884b2effc663b059ab4c692d71fffff
parents 0ec31b56 4abf0f70
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -323,10 +323,10 @@ public class StorageNotification extends SystemUI {

        if (notif != null) {
            mNotificationManager.notifyAsUser(vol.getId(), SystemMessage.NOTE_STORAGE_PUBLIC,
                    notif, UserHandle.ALL);
                    notif, UserHandle.of(vol.getMountUserId()));
        } else {
            mNotificationManager.cancelAsUser(vol.getId(), SystemMessage.NOTE_STORAGE_PUBLIC,
                    UserHandle.ALL);
                    UserHandle.of(vol.getMountUserId()));
        }
    }