We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4d651 commit 5c5f313Copy full SHA for 5c5f313
BranchSDK/Branch.m
@@ -2182,6 +2182,13 @@ - (void)initSafetyCheck {
2182
}
2183
2184
- (void)initUserSessionAndCallCallback:(BOOL)callCallback sceneIdentifier:(NSString *)sceneIdentifier {
2185
+ // Ignore lifecycle calls while init is deferred to a plugin runtime.
2186
+ if (self.deferInitForPluginRuntime) {
2187
+ //NSString *debug = [NSString stringWithFormat:@"Init is deferred, ignoring call: %@", NSThread.callStackSymbols];
2188
+ //BNCLogDebug(debug);
2189
+ return;
2190
+ }
2191
+
2192
dispatch_async(self.isolationQueue, ^(){
2193
NSString *urlstring = nil;
2194
if (self.preferenceHelper.universalLinkUrl.length) {
0 commit comments