ignore other bots

This commit is contained in:
Vargoshi 2023-10-15 21:35:35 +02:00
parent 5a241ff13c
commit 979dad5169
2 changed files with 10 additions and 2 deletions

View File

@ -28,7 +28,11 @@ async function img2img(
includeRepliedTo: boolean,
state: QuestionState = {},
): Promise<void> {
if (!ctx.message?.from?.id) {
if (!ctx.from) {
return;
}
if (ctx.from.is_bot) {
return;
}

View File

@ -20,7 +20,11 @@ export async function txt2imgCommand(ctx: CommandContext<ErisContext>) {
}
async function txt2img(ctx: ErisContext, match: string, includeRepliedTo: boolean): Promise<void> {
if (!ctx.message?.from?.id) {
if (!ctx.from) {
return;
}
if (ctx.from.is_bot) {
return;
}