Merge pull request #726 from AWDGroup/patch-1

Fixed: attempt to insert nil object from objects[0]
This commit is contained in:
Michael Diarmid 2018-01-17 15:16:45 +00:00 committed by GitHub
commit 097ffbf494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -6,11 +6,13 @@
static void sendDynamicLink(NSURL *url, id sender) {
if (url) {
[[NSNotificationCenter defaultCenter] postNotificationName:LINKS_DYNAMIC_LINK_RECEIVED
object:sender
userInfo:@{@"url": url.absoluteString}];
NSLog(@"sendDynamicLink Success: %@", url.absoluteString);
}
}
@implementation RNFirebaseLinks