@@ -152,7 +152,7 @@ + (dispatch_queue_t)realtimeRemoteConfigSerialQueue {
152
152
return realtimeRemoteConfigQueue;
153
153
}
154
154
155
- - (void )propogateErrors : (NSError *)error {
155
+ - (void )propagateErrors : (NSError *)error {
156
156
__weak RCNConfigRealtime *weakSelf = self;
157
157
dispatch_async (_realtimeLockQueue, ^{
158
158
__strong RCNConfigRealtime *strongSelf = weakSelf;
@@ -402,7 +402,7 @@ - (void)retryHTTPConnection {
402
402
}];
403
403
FIRLogError (kFIRLoggerRemoteConfig , @" I-RCN000014" , @" Cannot establish connection. Error: %@ " ,
404
404
error);
405
- [self propogateErrors : error];
405
+ [self propagateErrors : error];
406
406
}
407
407
});
408
408
}
@@ -455,7 +455,7 @@ - (void)fetchLatestConfig:(NSInteger)remainingAttempts targetVersion:(NSInteger)
455
455
@" Failed to retrieve config due to fetch error. "
456
456
@" Error: %@ " ,
457
457
error);
458
- return [self propogateErrors : error];
458
+ return [self propagateErrors : error];
459
459
}
460
460
if (status == FIRRemoteConfigFetchStatusSuccess) {
461
461
if ([strongSelf->_configFetch.templateVersionNumber
@@ -507,7 +507,7 @@ - (void)autoFetch:(NSInteger)remainingAttempts targetVersion:(NSInteger)targetVe
507
507
}];
508
508
FIRLogError (kFIRLoggerRemoteConfig , @" I-RCN000011" ,
509
509
@" Ran out of fetch attempts, cannot find target config version." );
510
- [self propogateErrors : error];
510
+ [self propagateErrors : error];
511
511
return ;
512
512
}
513
513
@@ -536,7 +536,7 @@ - (void)evaluateStreamResponse:(NSDictionary *)response error:(NSError *)dataErr
536
536
NSLocalizedDescriptionKey :
537
537
@" The server is temporarily unavailable. Try again in a few minutes."
538
538
}];
539
- [self propogateErrors : error];
539
+ [self propagateErrors : error];
540
540
} else {
541
541
NSInteger clientTemplateVersion = [_configFetch.templateVersionNumber integerValue ];
542
542
if (updateTemplateVersion > clientTemplateVersion) {
@@ -548,7 +548,7 @@ - (void)evaluateStreamResponse:(NSDictionary *)response error:(NSError *)dataErr
548
548
[NSError errorWithDomain: FIRRemoteConfigUpdateErrorDomain
549
549
code: FIRRemoteConfigUpdateErrorMessageInvalid
550
550
userInfo: @{NSLocalizedDescriptionKey : @" Unable to parse ConfigUpdate." }];
551
- [self propogateErrors : error];
551
+ [self propagateErrors : error];
552
552
}
553
553
}
554
554
@@ -567,7 +567,7 @@ - (void)URLSession:(NSURLSession *)session
567
567
code: FIRRemoteConfigUpdateErrorStreamError
568
568
userInfo: @{NSLocalizedDescriptionKey : strData}];
569
569
FIRLogError (kFIRLoggerRemoteConfig , @" I-RCN000021" , @" Cannot establish connection. %@ " , error);
570
- [self propogateErrors : error];
570
+ [self propagateErrors : error];
571
571
return ;
572
572
}
573
573
0 commit comments