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_database/firebase_database/android/src/main/kotlin/io/flutter/plugins/firebase/database/FirebaseDatabasePlugin.kt
+15-12Lines changed: 15 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -238,7 +238,7 @@ class FirebaseDatabasePlugin :
238
238
@Suppress("UNCHECKED_CAST")
239
239
val value = arguments[Constants.VALUE] asMap<String, Any>
240
240
Tasks.await(ref.updateChildren(value))
241
-
taskCompletionSource.setResult(null)
241
+
taskCompletionSource.setResult(null)
242
242
} catch (e:Exception) {
243
243
taskCompletionSource.setException(e)
244
244
}
@@ -605,7 +605,7 @@ class FirebaseDatabasePlugin :
605
605
try {
606
606
val database = getDatabaseFromPigeonApp(app)
607
607
val reference = database.getReference(request.path)
608
-
608
+
609
609
// Handle priority type conversion - Firebase Database expects Any? but Pigeon sends Object?
610
610
val priority =when (request.priority) {
611
611
isString-> request.priority
@@ -640,14 +640,17 @@ class FirebaseDatabasePlugin :
0 commit comments