Skip to content

Commit 521c337

Browse files
authored
fix(dynamic_links, iOS): fix an issue where the status of the dynamic link was not properly reported (#10100)
1 parent 86f2463 commit 521c337

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

packages/firebase_dynamic_links/firebase_dynamic_links/ios/Classes/FLTFirebaseDynamicLinksPlugin.m

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -327,11 +327,8 @@ - (BOOL)application:(UIApplication *)application
327327
}
328328
};
329329

330-
[[FIRDynamicLinks dynamicLinks] handleUniversalLink:userActivity.webpageURL
331-
completion:completionBlock];
332-
333-
// Results of this are ORed and NO doesn't affect other delegate interceptors' result.
334-
return NO;
330+
return [[FIRDynamicLinks dynamicLinks] handleUniversalLink:userActivity.webpageURL
331+
completion:completionBlock];
335332
}
336333

337334
#pragma mark - Utilities

0 commit comments

Comments
 (0)