Skip to content

Commit 928e052

Browse files
committed
Fix crash
1 parent 8a27331 commit 928e052

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cloud_firestore/android/src/main/java/io/flutter/plugins/firebase/cloudfirestore/CloudFirestorePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ public void onComplete(Task<TransactionResult> task) {
443443

444444
TransactionResult transactionResult = task.getResult();
445445
if (transactionResult.exception == null) {
446-
result.success(transactionResult);
446+
result.success(transactionResult.result);
447447
} else {
448448
result.error(
449449
"Error performing transaction",

0 commit comments

Comments
 (0)