summary refs log tree commit diff
diff options
context:
space:
mode:
authorMathMan05 <mathmanrm@gmail.com>2026-03-04 15:53:00 -0600
committerRory& <root@rory.gay>2026-03-18 05:18:39 +0100
commit1d71797f536bd6c99486e00f046d233db9590cef (patch)
treea8ec0e9e1be4b89e3425b340695ddd04afbed806
parentenum for failure (diff)
downloadserver-ts-1d71797f536bd6c99486e00f046d233db9590cef.tar.xz
fix typo
-rw-r--r--src/api/routes/interactions/index.ts2
-rw-r--r--src/util/imports/Interactions.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/api/routes/interactions/index.ts b/src/api/routes/interactions/index.ts

index 65b8a02e..fc853184 100644 --- a/src/api/routes/interactions/index.ts +++ b/src/api/routes/interactions/index.ts
@@ -139,7 +139,7 @@ router.post("/", route({}), async (req: Request, res: Response) => { type: body.type, commandType: body.data.type, commandName: body.data.name, - mesageId: body.message_id, + messageId: body.message_id, }); res.sendStatus(204); diff --git a/src/util/imports/Interactions.ts b/src/util/imports/Interactions.ts
index 9ebe1cae..304241cd 100644 --- a/src/util/imports/Interactions.ts +++ b/src/util/imports/Interactions.ts
@@ -26,7 +26,7 @@ interface PendingInteraction { channelId?: string; guildId?: string; nonce?: string; - mesageId?: string; + messageId?: string; type: InteractionType; commandType: ApplicationCommandType; commandName: string;