diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-12-29 13:26:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-29 11:26:38 +0000 |
| commit | f7920bdc94d97a6a94477f49e145432607b94951 (patch) | |
| tree | 32003337bea676bfccb89f8ab349663e9b3c5750 /packages/trpc | |
| parent | 1082076133ff185980ba3d6b5a989939ed431e14 (diff) | |
| download | karakeep-f7920bdc94d97a6a94477f49e145432607b94951.tar.zst | |
fix: reset tagging status on crawl failure (#2316)
* feat: add the ability to specify a different changelog version
* fix: reset tagging status on crawl failure
* fix missing crawlStatus in loadMulti
Diffstat (limited to 'packages/trpc')
| -rw-r--r-- | packages/trpc/models/bookmarks.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/trpc/models/bookmarks.ts b/packages/trpc/models/bookmarks.ts index a8b30fc5..0700246f 100644 --- a/packages/trpc/models/bookmarks.ts +++ b/packages/trpc/models/bookmarks.ts @@ -182,6 +182,7 @@ export class Bookmark extends BareBookmark { ? await Bookmark.getBookmarkHtmlContent(link, bookmark.userId) : null, crawledAt: link.crawledAt, + crawlStatus: link.crawlStatus, author: link.author, publisher: link.publisher, datePublished: link.datePublished, @@ -464,6 +465,7 @@ export class Bookmark extends BareBookmark { : row.bookmarkLinks.htmlContent : null, contentAssetId: row.bookmarkLinks.contentAssetId, + crawlStatus: row.bookmarkLinks.crawlStatus, crawledAt: row.bookmarkLinks.crawledAt, author: row.bookmarkLinks.author, publisher: row.bookmarkLinks.publisher, |
