Merge pull request #726 from AWDGroup/patch-1
Fixed: attempt to insert nil object from objects[0]
This commit is contained in:
commit
097ffbf494
|
@ -6,10 +6,12 @@
|
|||
|
||||
|
||||
static void sendDynamicLink(NSURL *url, id sender) {
|
||||
[[NSNotificationCenter defaultCenter] postNotificationName:LINKS_DYNAMIC_LINK_RECEIVED
|
||||
object:sender
|
||||
userInfo:@{@"url": url.absoluteString}];
|
||||
NSLog(@"sendDynamicLink Success: %@", url.absoluteString);
|
||||
if (url) {
|
||||
[[NSNotificationCenter defaultCenter] postNotificationName:LINKS_DYNAMIC_LINK_RECEIVED
|
||||
object:sender
|
||||
userInfo:@{@"url": url.absoluteString}];
|
||||
NSLog(@"sendDynamicLink Success: %@", url.absoluteString);
|
||||
}
|
||||
}
|
||||
|
||||
@implementation RNFirebaseLinks
|
||||
|
|
Loading…
Reference in New Issue