fix errors

This commit is contained in:
Vargoshi 2023-10-15 21:47:08 +02:00
parent cd3b53018a
commit 2f059ceaff
2 changed files with 2 additions and 2 deletions

View File

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

View File

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