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

Commit b2f63d11 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by android-build-merger
Browse files

Merge "Fix getMediaUri() bug on secondary devices." into qt-dev am: 1db94b90 am: e1fca1be

am: ac1ef249

Change-Id: Iac9fae8f77c14526657b252521dc56abe6d591a1
parents 46d59213 ac1ef249
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -638,7 +638,7 @@ public class ExternalStorageProvider extends FileSystemProvider {
                    final String docId = DocumentsContract.getDocumentId(documentUri);
                    try {
                        final Bundle out = new Bundle();
                        final Uri uri = Uri.fromFile(getFileForDocId(docId));
                        final Uri uri = Uri.fromFile(getFileForDocId(docId, true));
                        out.putParcelable(DocumentsContract.EXTRA_URI, uri);
                        return out;
                    } catch (FileNotFoundException e) {