Skip to content

Commit

Permalink
fix: fix verify
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyokone committed Oct 14, 2022
1 parent 4cb2c82 commit ca84ad3
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ class FirebaseRemoteConfig extends FirebasePluginPlatform with ChangeNotifier {
/// Returns an instance using the specified [FirebaseApp].
static FirebaseRemoteConfig instanceFor({required FirebaseApp app}) {
return _firebaseRemoteConfigInstances.putIfAbsent(app.name, () {
final instance = FirebaseRemoteConfig._(app: app);
FirebasePluginPlatform.verify(instance);
return instance;
return FirebaseRemoteConfig._(app: app);
});
}

Expand Down

0 comments on commit ca84ad3

Please sign in to comment.