Merge "Don't update quota for non-emulated volumes." into rvc-dev am: 29d6a24fbf am: 81018616a3

Change-Id: I05c9a975b7e8a8860b6d31719870294471b618e7
This commit is contained in:
Martijn Coenen
2020-04-21 13:03:16 +00:00
committed by Automerger Merge Worker

View File

@@ -2447,7 +2447,12 @@ public class StorageManager {
final String filePath = path.getCanonicalPath(); final String filePath = path.getCanonicalPath();
final StorageVolume volume = getStorageVolume(path); final StorageVolume volume = getStorageVolume(path);
if (volume == null) { if (volume == null) {
throw new IllegalStateException("Failed to update quota type for " + filePath); Log.w(TAG, "Failed to update quota type for " + filePath);
return;
}
if (!volume.isEmulated()) {
// We only support quota tracking on emulated filesystems
return;
} }
final int userId = volume.getOwner().getIdentifier(); final int userId = volume.getOwner().getIdentifier();