Skip to content

Commit

Permalink
Fixed: iOS bridge returning object instead of string
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenVot committed Jul 16, 2020
1 parent b674095 commit bc7597a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/RNBugfender.m
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ @implementation RNBugfender
cancelButtonTitle:cancelButtonText
completion:^(BOOL feedbackSent, NSURL * _Nullable url) {
if (feedbackSent) {
resolve(url);
resolve(url.absoluteString);
} else {
reject(0, @"Feedback not sent", nil);
}
Expand Down

0 comments on commit bc7597a

Please sign in to comment.