From c0b4e9d9cd772f2eee032e45cf3584c7d2a85bf2 Mon Sep 17 00:00:00 2001 From: zhishi <1951671751@qq.com> Date: Mon, 6 Apr 2026 02:03:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/production/storyboard/batchGenerateImage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/production/storyboard/batchGenerateImage.ts b/src/routes/production/storyboard/batchGenerateImage.ts index 203fc3f..cf19a06 100644 --- a/src/routes/production/storyboard/batchGenerateImage.ts +++ b/src/routes/production/storyboard/batchGenerateImage.ts @@ -44,7 +44,7 @@ export default router.post( .db("o_storyboard") .whereIn("id", finalStoryboardIds) .where("scriptId", scriptId) - .whereNot("shouldGenerateImage", 1) + .where("shouldGenerateImage", 1) .update({ state: "生成中" }); const projectSettingData = await u.db("o_project").where("id", projectId).select("imageModel", "imageQuality", "artStyle", "videoRatio").first();