File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Crashlytics/Crashlytics/Models Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,9 @@ - (BOOL)regenerateInstallIDIfNeededWithBlock:(void (^)(NSString *fiid))block {
106106 // This runs Completion async, so wait a reasonable amount of time for it to finish.
107107 [self .installations
108108 installationIDWithCompletion: ^(NSString *_Nullable currentIID, NSError *_Nullable error) {
109- // Provide the IID to the callback
109+ // Provide the IID to the callback. For this case we don't care
110+ // if the FIID is null because it's the best we can do - we just want
111+ // to send up the same FIID that is sent by other SDKs (eg. the Sessions SDK).
110112 block (currentIID);
111113
112114 didRotate = [self rotateCrashlyticsInstallUUIDWithIID: currentIID error: error];
You can’t perform that action at this time.
0 commit comments