File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ # v4.4.11
2
+ - [ fixed] Fixed a bug where settings updates weren't applied before fetches. (#4740 )
3
+ - [ changed] Updated public API documentation for 4.4.10 change from FirebaseInstanceID to
4
+ FirebaseInstallations. (#5561 )
1
5
# v4.4.10
2
6
- [ changed] Internal code changes - migrate to using the FIS SDK. (#5096 )
3
7
- [ changed] Include both CFBundleString and CFBundleShortVersionString in the outgoing fetch requests.
Original file line number Diff line number Diff line change @@ -214,8 +214,10 @@ - (void)ensureInitializedWithCompletionHandler:
214
214
#pragma mark - fetch
215
215
216
216
- (void )fetchWithCompletionHandler : (FIRRemoteConfigFetchCompletion)completionHandler {
217
- [self fetchWithExpirationDuration: _settings.minimumFetchInterval
218
- completionHandler: completionHandler];
217
+ dispatch_async (_queue, ^{
218
+ [self fetchWithExpirationDuration: self ->_settings.minimumFetchInterval
219
+ completionHandler: completionHandler];
220
+ });
219
221
}
220
222
221
223
- (void )fetchWithExpirationDuration : (NSTimeInterval )expirationDuration
You can’t perform that action at this time.
0 commit comments