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_remote_config/firebase_remote_config/android/src/main/kotlin/io/flutter/plugins/firebase/firebaseremoteconfig/FirebaseRemoteConfigPlugin.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -206,9 +206,9 @@ class FirebaseRemoteConfigPlugin
206
206
})
207
207
}
208
208
209
-
overridefunonCancel(arguments:Any) {
209
+
overridefunonCancel(arguments:Any?) {
210
210
// arguments will be null on hot restart, so we will clean up listeners in didReinitializeFirebaseCore()
211
-
val argumentsMap = arguments asMap<String, Any>
211
+
val argumentsMap = arguments as?Map<String, Any>
212
212
?:return
213
213
val appName =Objects.requireNonNull(argumentsMap["appName"]) asString
0 commit comments