diff options
| -rw-r--r-- | apps/workers/assetPreprocessingWorker.ts | 2 |
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, }); |
