Skip to content

Commit 65ff93d

Browse files
Throw exception
1 parent 223fc1c commit 65ff93d

File tree

1 file changed

+1
-1
lines changed
  • firebase-firestore/src/main/java/com/google/firebase/firestore/local

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ private void dropLastLimboFreeSnapshotVersion() {
405405
"UPDATE targets SET target_proto = ? WHERE target_id = ?",
406406
new Object[] {targetProto.toByteArray(), targetId});
407407
} catch (InvalidProtocolBufferException e) {
408-
fail("Failed to decode Query data for target %s", targetId);
408+
throw fail("Failed to decode Query data for target %s", targetId);
409409
}
410410
});
411411
}

0 commit comments

Comments
 (0)