File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# v7.0.0
2
2
- [ changed] Updated ` lastFetchTime ` field to readonly. (#6567 )
3
+ - [ changed] Functionally neutral change to stop using a deprecated AB Testing SDK method. (#6581 )
4
+
5
+ # v4.9.1
6
+ - [ fixed] Fix an ` attempt to insert nil object ` crash in ` fetchWithExpirationDuration: ` . (#6522 )
3
7
4
8
# v4.9.0
5
9
- [ fixed] Fixed ` FirebaseApp.delete() ` related crash in ` RC Config Fetch ` . (#6123 )
Original file line number Diff line number Diff line change @@ -412,9 +412,9 @@ - (void)fetchWithUserProperties:(NSDictionary *)userProperties
412
412
strongSelf->_settings .lastFetchError = FIRRemoteConfigErrorInternalError;
413
413
NSDictionary <NSErrorUserInfoKey , id > *userInfo = @{
414
414
NSLocalizedDescriptionKey :
415
- (error ? [error localizedDescription ]
416
- : [NSString
417
- stringWithFormat: @" Internal Error. Status code: %ld " , (long )statusCode])
415
+ ([error localizedDescription ]
416
+ ? : [NSString
417
+ stringWithFormat: @" Internal Error. Status code: %ld " , (long )statusCode])
418
418
};
419
419
return [strongSelf
420
420
reportCompletionOnHandler: completionHandler
You can’t perform that action at this time.
0 commit comments