File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1+ # Unreleased
2+ - [ fixed] Fix build warning from comparison of different enumeration types.
3+
14# 11.13.0
25- [ fixed] Fix an issue where network requests would fail in the iOS 18.4
36 simulator due to a URLSession bug introduced in Xcode 16.3. (#14728 )
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ - (void)copyFromDictionary:(NSDictionary *)fromDict
198198 toDict[FIRNamespace] = [[NSMutableDictionary alloc ] init ];
199199 NSDictionary *config = fromDict[FIRNamespace];
200200 for (NSString *key in config) {
201- if (DBSource == FIRRemoteConfigSourceDefault ) {
201+ if (DBSource == RCNDBSourceDefault ) {
202202 NSObject *value = config[key];
203203 NSData *valueData;
204204 if ([value isKindOfClass: [NSData class ]]) {
You can’t perform that action at this time.
0 commit comments