We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3abf1c3 commit 1ce8887Copy full SHA for 1ce8887
FirebaseRemoteConfig/CHANGELOG.md
@@ -1,3 +1,6 @@
1
+# Unreleased
2
+- [fixed] Fix build warning from comparison of different enumeration types.
3
+
4
# 11.13.0
5
- [fixed] Fix an issue where network requests would fail in the iOS 18.4
6
simulator due to a URLSession bug introduced in Xcode 16.3. (#14728)
FirebaseRemoteConfig/Sources/RCNConfigContent.m
@@ -198,7 +198,7 @@ - (void)copyFromDictionary:(NSDictionary *)fromDict
198
toDict[FIRNamespace] = [[NSMutableDictionary alloc] init];
199
NSDictionary *config = fromDict[FIRNamespace];
200
for (NSString *key in config) {
201
- if (DBSource == FIRRemoteConfigSourceDefault) {
+ if (DBSource == RCNDBSourceDefault) {
202
NSObject *value = config[key];
203
NSData *valueData;
204
if ([value isKindOfClass:[NSData class]]) {
0 commit comments