diff --git a/src/handlers/balabola.ts b/src/handlers/balabola.ts index 5aa12b3..3326816 100644 --- a/src/handlers/balabola.ts +++ b/src/handlers/balabola.ts @@ -53,7 +53,7 @@ filter.hear(/^(?:пр)\s(1|2|3|4|5|6|7)\s(.*)?$/i, async ctx => { }); filter.use(async ctx => { - await ctx.send('генерирую!!'); + if (ctx.isChat) return; const result = await balabolaQueue.add(() => balabola(ctx.text!, 6)); await ctx.send(result); });