We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec2c6c commit bafc000Copy full SHA for bafc000
firebase-firestore/CHANGELOG.md
@@ -3,6 +3,7 @@ by opting into a release at
3
[go/firebase-android-release](http:go/firebase-android-release) (Googlers only).
4
5
# Unreleased
6
+- [fixed] Fixed an issue `waitForPendingWrites()` could lead to NullPointerException.
7
8
# 24.2.0
9
- [feature] Added `TransactionOptions` to control how many times a transaction
firebase-firestore/src/main/java/com/google/firebase/firestore/FirebaseFirestore.java
@@ -550,6 +550,7 @@ public Task<Void> terminate() {
550
*/
551
@NonNull
552
public Task<Void> waitForPendingWrites() {
553
+ ensureClientConfigured();
554
return client.waitForPendingWrites();
555
}
556
0 commit comments