Skip to content

Commit d0ddeab

Browse files
Merge branch 'mrschmidt/idempotent' into mrschmidt/applyremoteevent
2 parents 2fdaf4c + 7134b9c commit d0ddeab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/local/simple_db.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ export class SimpleDb {
279279
// Horrible hack to verify that idempotent functions can be run more
280280
// than once.
281281
.next(result => {
282-
if (idempotent && attemptNumber == 1) {
282+
if (idempotent && attemptNumber === 1) {
283283
class DOMException {}
284284
throw new DOMException();
285285
}

0 commit comments

Comments
 (0)