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

Commit 4abf0f70 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

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

parents c8156c6a f8543809
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()));
        }
    }