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 )
15# v4.4.10
26- [ changed] Internal code changes - migrate to using the FIS SDK. (#5096 )
37- [ 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:
214214#pragma mark - fetch
215215
216216- (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+ });
219221}
220222
221223- (void )fetchWithExpirationDuration : (NSTimeInterval )expirationDuration
You can’t perform that action at this time.
0 commit comments