Also consider secondary storage when verifying paths

Bug: 17673184
Bug: 17982103
Change-Id: Ief14c7776b02983191c46774fa7e4c76380de58d
This commit is contained in:
Marco Nelissen
2014-10-15 14:32:22 -07:00
parent d700e5a37a
commit c1fda12823

View File

@@ -306,8 +306,10 @@ public class MtpDatabase {
try {
File f = new File(path);
String canonical = f.getCanonicalPath();
if (canonical.startsWith(mMediaStoragePath)) {
return true;
for (String root: mStorageMap.keySet()) {
if (canonical.startsWith(root)) {
return true;
}
}
} catch (IOException e) {
// ignore