aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkamtschatka <sschatka@gmail.com>2024-05-25 00:21:05 +0200
committerGitHub <noreply@github.com>2024-05-24 23:21:05 +0100
commit6dc67cf46717ec1653e7d8d1954a52309104a683 (patch)
tree7a5955636d293927bf3ec2609af3e15a1a75eca9
parenteac54e6e62496e19d4cab2efd13eb9af2d0a1c0b (diff)
downloadkarakeep-6dc67cf46717ec1653e7d8d1954a52309104a683.tar.zst
fix(cli): Switched to cursorV2 to make use of the fix for #140 and prevent infinite loops (#176)
Co-authored-by: kamtschatka <simon.schatka@gmx.at>
-rw-r--r--apps/cli/src/commands/bookmarks.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/cli/src/commands/bookmarks.ts b/apps/cli/src/commands/bookmarks.ts
index a9029f44..0f557120 100644
--- a/apps/cli/src/commands/bookmarks.ts
+++ b/apps/cli/src/commands/bookmarks.ts
@@ -123,6 +123,7 @@ bookmarkCmd
archived: opts.includeArchived ? undefined : false,
listId: opts.listId,
limit: MAX_NUM_BOOKMARKS_PER_PAGE,
+ useCursorV2: true,
};
let resp = await api.bookmarks.getBookmarks.query(request);