Skip to content

Commit

Permalink
fix(iOS): Do not pass exception instance to rejecter (#111)
Browse files Browse the repository at this point in the history
Co-authored-by: MAKARD01 <dmytro.makarenko@kingfisher.com>
  • Loading branch information
MAKARD and MAKARD01 committed Apr 10, 2021
1 parent 188cdf9 commit 597f32e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/RNCookieManagerIOS/RNCookieManagerIOS.m
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ + (BOOL)requiresMainQueueSetup
cookie = [self makeHTTPCookieObject:url props:props];
}
@catch ( NSException *e ) {
reject(@"", [e reason], e);
reject(@"", [e reason], nil);
return;
}

Expand Down

0 comments on commit 597f32e

Please sign in to comment.