Browse Source

I forgot one error string for the Android readFile() method (#475)

* bump to 0.10.8

* Update PULL_REQUEST_TEMPLATE

* Forgot to normalize the error message of readFile
KittenWithHerbs 6 years ago
parent
commit
873cb80c93
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      android/src/main/java/com/RNFetchBlob/RNFetchBlobFS.java

+ 1
- 1
android/src/main/java/com/RNFetchBlob/RNFetchBlobFS.java View File

189
             }
189
             }
190
         }
190
         }
191
         catch(Exception err) {
191
         catch(Exception err) {
192
-            promise.reject("ReadFile Error", err.getLocalizedMessage());
192
+            promise.reject("RNFetchBlob readFile error", err.getLocalizedMessage());
193
         }
193
         }
194
 
194
 
195
     }
195
     }