aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workers
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-03-02 12:19:17 +0000
committerMohamed Bassem <me@mbassem.com>2025-03-02 12:19:17 +0000
commit2399dcb6fc7df3fd1753448c658e1cc9ce379687 (patch)
treedec75d3320635a91e443a0a6dbbdac7fdc02f286 /apps/workers
parent69d81aafe113a2b4769ecb936b9a5a02e31a0fd8 (diff)
downloadkarakeep-2399dcb6fc7df3fd1753448c658e1cc9ce379687.tar.zst
fix: Fix fixMode preventing images from getting tagged
Diffstat (limited to 'apps/workers')
-rw-r--r--apps/workers/assetPreprocessingWorker.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workers/assetPreprocessingWorker.ts b/apps/workers/assetPreprocessingWorker.ts
index f94eeb9e..45a5479c 100644
--- a/apps/workers/assetPreprocessingWorker.ts
+++ b/apps/workers/assetPreprocessingWorker.ts
@@ -323,7 +323,7 @@ async function run(req: DequeuedJob<AssetPreprocessingRequest>) {
);
}
- if (anythingChanged) {
+ if (!isFixMode || anythingChanged) {
await OpenAIQueue.enqueue({
bookmarkId,
});