diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-12-24 14:49:05 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-12-25 13:01:57 +0000 |
| commit | 65cfa87107c2704474fee8fa781a35b10b35f60e (patch) | |
| tree | b9ef01bc89b9c9dca610d2ba613ad1d3b1b1fa20 /apps/cli/src | |
| parent | ddd4b578cd193612f3b6927524d4a30e65fd4e44 (diff) | |
| download | karakeep-65cfa87107c2704474fee8fa781a35b10b35f60e.tar.zst | |
fix(cli): migrate bookmark source in migration command
Diffstat (limited to 'apps/cli/src')
| -rw-r--r-- | apps/cli/src/commands/migrate.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/cli/src/commands/migrate.ts b/apps/cli/src/commands/migrate.ts index ee0d85c8..6527be23 100644 --- a/apps/cli/src/commands/migrate.ts +++ b/apps/cli/src/commands/migrate.ts @@ -695,6 +695,7 @@ async function migrateBookmarks( summary: b.summary ?? undefined, createdAt: b.createdAt, crawlPriority: "low" as const, + source: b.source === null ? undefined : b.source, }; let createdId: string | null = null; switch (b.content.type) { |
