File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
FirebaseRemoteConfig/Sources Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1109,7 +1109,8 @@ - (void)deleteRecordWithBundleIdentifier:(NSString *)bundleIdentifier
11091109 if (!strongSelf) {
11101110 return ;
11111111 }
1112- const char *SQL = " DELETE FROM " RCNTableNameMetadata " WHERE bundle_identifier = ? and namespace = ?" ;
1112+ const char *SQL =
1113+ " DELETE FROM " RCNTableNameMetadata " WHERE bundle_identifier = ? and namespace = ?" ;
11131114 NSArray *params = @[ bundleIdentifier, namespace ];
11141115 [strongSelf executeQuery: SQL withParams: params];
11151116 });
Original file line number Diff line number Diff line change @@ -272,8 +272,7 @@ - (void)updateFetchTimeWithSuccessFetch:(BOOL)isSuccessfulFetch {
272272}
273273
274274- (void )updateMetadataTable {
275- [_DBManager deleteRecordWithBundleIdentifier: _bundleIdentifier
276- namespace: _FIRNamespace];
275+ [_DBManager deleteRecordWithBundleIdentifier: _bundleIdentifier namespace: _FIRNamespace];
277276 NSError *error;
278277 // Objects to be serialized cannot be invalid.
279278 if (!_bundleIdentifier) {
You can’t perform that action at this time.
0 commit comments