Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Commit ecbf535

Browse files
AndrewJackwkh237
authored andcommitted
Catch null contentUri (#343)
1 parent 335d83d commit ecbf535

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

android/src/main/java/com/RNFetchBlob/RNFetchBlobReq.java

+8-6
Original file line numberDiff line numberDiff line change
@@ -641,12 +641,14 @@ public void onReceive(Context context, Intent intent) {
641641
return;
642642
}
643643
String contentUri = c.getString(c.getColumnIndex(DownloadManager.COLUMN_LOCAL_URI));
644-
Uri uri = Uri.parse(contentUri);
645-
Cursor cursor = appCtx.getContentResolver().query(uri, new String[]{android.provider.MediaStore.Images.ImageColumns.DATA}, null, null, null);
646-
// use default destination of DownloadManager
647-
if (cursor != null) {
648-
cursor.moveToFirst();
649-
filePath = cursor.getString(0);
644+
if (contentUri != null) {
645+
Uri uri = Uri.parse(contentUri);
646+
Cursor cursor = appCtx.getContentResolver().query(uri, new String[]{android.provider.MediaStore.Images.ImageColumns.DATA}, null, null, null);
647+
// use default destination of DownloadManager
648+
if (cursor != null) {
649+
cursor.moveToFirst();
650+
filePath = cursor.getString(0);
651+
}
650652
}
651653
}
652654
// When the file is not found in media content database, check if custom path exists

0 commit comments

Comments
 (0)