Skip to content

Commit 0410466

Browse files
authored
Merge pull request #56 from Skn0tt/0.10.9
Fix typo: "Status" instead of "Statu"
2 parents 1f9a176 + 853fed3 commit 0410466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ public void onReceive(Context context, Intent intent) {
668668
// #297 handle failed request
669669
int statusCode = c.getInt(c.getColumnIndex(DownloadManager.COLUMN_STATUS));
670670
if(statusCode == DownloadManager.STATUS_FAILED) {
671-
this.callback.invoke("Download manager failed to download from " + this.url + ". Statu Code = " + statusCode, null, null);
671+
this.callback.invoke("Download manager failed to download from " + this.url + ". Status Code = " + statusCode, null, null);
672672
return;
673673
}
674674
String contentUri = c.getString(c.getColumnIndex(DownloadManager.COLUMN_LOCAL_URI));

0 commit comments

Comments
 (0)