You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/firebase_core/firebase_core_platform_interface/lib/src/method_channel/method_channel_firebase.dart
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -121,9 +121,7 @@ class MethodChannelFirebase extends FirebasePlatform {
121
121
// check to see if options are roughly identical (so we don't unnecessarily
122
122
// throw on minor differences such as platform specific keys missing
123
123
// e.g. hot reloads/restarts).
124
-
if (defaultApp !=null&&
125
-
_options !=null&&
126
-
!_options.projectId.startsWith('demo-')) {
124
+
if (defaultApp !=null&& _options !=null) {
127
125
if (_options.apiKey != defaultApp.options.apiKey ||
0 commit comments