Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit e7e1775

Browse files
committed
fix(cursor): ensure that cursor id defaults to 0
1 parent f91304b commit e7e1775

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/cursor.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,8 @@ function initializeCursor(cursor, callback) {
700700
}
701701

702702
// Otherwise fall back to regular find path
703-
cursor.cursorState.cursorId = result.cursorId;
703+
const cursorId = result.cursorId || 0;
704+
cursor.cursorState.cursorId = Long.fromNumber(cursorId);
704705
cursor.cursorState.documents = result.documents;
705706
cursor.cursorState.lastCursorId = result.cursorId;
706707

0 commit comments

Comments
 (0)