File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ # v4.9.1
2
+ - [ fixed] Fix an ` attempt to insert nil object ` crash in ` fetchWithExpirationDuration: ` . (#6522 )
3
+
1
4
# v4.9.0
2
5
- [ fixed] Fixed ` FirebaseApp.delete() ` related crash in ` RC Config Fetch ` . (#6123 )
3
6
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