Merge "Use visiblePath instead of path for findDocumentPath" into rvc-dev

This commit is contained in:
Diksha Gohlyan
2020-06-10 15:56:20 +00:00
committed by Android (Google) Code Review

View File

@@ -520,9 +520,11 @@ public class ExternalStorageProvider extends FileSystemProvider {
final RootInfo root = resolvedDocId.first;
File child = resolvedDocId.second;
final File rootFile = root.visiblePath != null ? root.visiblePath
: root.path;
final File parent = TextUtils.isEmpty(parentDocId)
? root.path
: getFileForDocId(parentDocId);
? rootFile
: getFileForDocId(parentDocId);
return new Path(parentDocId == null ? root.rootId : null, findDocumentPath(parent, child));
}