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

Commit f0df748d 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

Change-Id: I9f3332a8c27c867e948e15aff3a3e9ee6f11132b
parents c77e6895 1db94b90
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) {