Skip to content

Commit 88424ca

Browse files
committed
Fix off-by-one
1 parent 0e108f1 commit 88424ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/local/SQLiteMutationQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public void start() {
9393
.binding(uid)
9494
.first(
9595
row -> {
96-
lastStreamToken = ByteString.copyFrom(row.getBlob(1));
96+
lastStreamToken = ByteString.copyFrom(row.getBlob(0));
9797
});
9898

9999
if (rows == 0) {

0 commit comments

Comments
 (0)