We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 302d21c commit 0d74b3cCopy full SHA for 0d74b3c
1 file changed
Sources/mParticle-Appboy/MPKitAppboy.m
@@ -334,9 +334,6 @@ - (MPKitExecStatus *)didFinishLaunchingWithConfiguration:(NSDictionary *)configu
334
_started = NO;
335
}
336
337
- // Update Consent on launch
338
- [self updateConsent];
339
-
340
execStatus = [[MPKitExecStatus alloc] initWithSDKCode:[[self class] kitCode] returnCode:MPKitReturnCodeSuccess];
341
return execStatus;
342
@@ -398,6 +395,9 @@ - (void)start {
398
395
399
396
self->_started = YES;
400
397
+ // Update Consent on start
+ [self updateConsent];
+
401
dispatch_async(dispatch_get_main_queue(), ^{
402
NSDictionary *userInfo = @{mParticleKitInstanceKey:[[self class] kitCode]};
403
0 commit comments