From ffd3d0dc8dbaadd002ae1cd06c88498be25bff3c Mon Sep 17 00:00:00 2001 From: pinks Date: Sat, 18 Nov 2023 00:50:34 +0100 Subject: [PATCH] fix: priority for img2img --- bot/img2imgCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/img2imgCommand.ts b/bot/img2imgCommand.ts index edca6d1..48569c2 100644 --- a/bot/img2imgCommand.ts +++ b/bot/img2imgCommand.ts @@ -129,7 +129,7 @@ async function img2img( chat: ctx.message.chat, requestMessage: ctx.message, replyMessage: replyMessage, - }, { retryCount: 3, repeatDelayMs: 10_000 }); + }, { priority: 0, retryCount: 3, repeatDelayMs: 10_000 }); debug(`Generation (img2img) enqueued for ${formatUserChat(ctx.message)}`); }