react-native-blob-util 0.19.0 → 0.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -210,9 +210,9 @@ NSMutableDictionary *fileStreams = nil;
210
210
  free(buffer);
211
211
 
212
212
  }
213
- @catch (NSError * err)
213
+ @catch (NSException * ex)
214
214
  {
215
- NSDictionary * payload = @{ @"streamId":streamId, @"event": FS_EVENT_ERROR, @"code": @"EUNSPECIFIED", @"detail": [err description] };
215
+ NSDictionary * payload = @{ @"streamId":streamId, @"event": FS_EVENT_ERROR, @"code": @"EUNSPECIFIED", @"detail": [ex description] };
216
216
  [baseModule emitEventDict:EVENT_FILESYSTEM body:payload];
217
217
  }
218
218
  @finally
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-blob-util",
3
- "version": "0.19.0",
3
+ "version": "0.19.1",
4
4
  "description": "A module provides upload, download, and files access API. Supports file stream read/write for process large files.",
5
5
  "main": "index",
6
6
  "scripts": {