@@ -153,8 +153,8 @@ @interface Branch() <BranchDeepLinkingControllerCompletionDelegate> {
153153@property (nonatomic , copy , nullable ) void (^sceneSessionInitWithCallback)(BNCInitSessionResponse * _Nullable initResponse, NSError * _Nullable error);
154154
155155// Support for deferred SDK initialization. Used to support slow plugin runtime startup.
156- // This is enabled by setting deferInitForPlugin to true in branch.json
157- @property (nonatomic , assign , readwrite ) BOOL deferInitForPlugin ;
156+ // This is enabled by setting deferInitForPluginRuntime to true in branch.json
157+ @property (nonatomic , assign , readwrite ) BOOL deferInitForPluginRuntime ;
158158@property (nonatomic , copy , nullable ) void (^cachedInitBlock)(void );
159159
160160@end
@@ -231,7 +231,7 @@ - (id)initWithInterface:(BNCServerInterface *)interface
231231 [self loadUserAgent ];
232232
233233 BranchJsonConfig *config = BranchJsonConfig.instance ;
234- self.deferInitForPlugin = config.deferInitForPlugin ;
234+ self.deferInitForPluginRuntime = config.deferInitForPluginRuntime ;
235235
236236 if (config.enableLogging ) {
237237 [self enableLogging ];
@@ -2148,7 +2148,7 @@ - (void)clearNetworkQueue {
21482148- (BOOL )deferInitBlock : (void (^)(void ))block {
21492149 BOOL deferred = NO ;
21502150 @synchronized (self) {
2151- if (self.deferInitForPlugin ) {
2151+ if (self.deferInitForPluginRuntime ) {
21522152 self.cachedInitBlock = block;
21532153 deferred = YES ;
21542154 }
@@ -2163,7 +2163,7 @@ - (BOOL)deferInitBlock:(void (^)(void))block {
21632163// Releases deferred init block
21642164- (void )notifyNativeToInit {
21652165 @synchronized (self) {
2166- self.deferInitForPlugin = NO ;
2166+ self.deferInitForPluginRuntime = NO ;
21672167 }
21682168
21692169 if (self.cachedInitBlock ) {
0 commit comments