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
+
1
4
# 11.13.0
2
5
- [ fixed] Fix an issue where network requests would fail in the iOS 18.4
3
6
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
198
198
toDict[FIRNamespace] = [[NSMutableDictionary alloc ] init ];
199
199
NSDictionary *config = fromDict[FIRNamespace];
200
200
for (NSString *key in config) {
201
- if (DBSource == FIRRemoteConfigSourceDefault ) {
201
+ if (DBSource == RCNDBSourceDefault ) {
202
202
NSObject *value = config[key];
203
203
NSData *valueData;
204
204
if ([value isKindOfClass: [NSData class ]]) {
You can’t perform that action at this time.
0 commit comments