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

Commit c58fdf35 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Fix regression to boolean logic.

Test: visual
Bug: 112640972
Change-Id: I008e971446228136159b1570882846afb048987c
parent 3224207f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3830,7 +3830,7 @@ class StorageManagerService extends IStorageManager.Stub
        @Override
        public void onExternalStoragePolicyChanged(int uid, String packageName) {
            // No runtime storage permissions in isolated storage world, so nothing to do here.
            if (!ENABLE_ISOLATED_STORAGE) return;
            if (ENABLE_ISOLATED_STORAGE) return;
            final int mountMode = getExternalStorageMountMode(uid, packageName);
            remountUidExternalStorage(uid, mountMode);
        }