diff --git a/packages/core/src/api/channel.ts b/packages/core/src/api/channel.ts index ca062a70e..1490fc718 100644 --- a/packages/core/src/api/channel.ts +++ b/packages/core/src/api/channel.ts @@ -31,7 +31,6 @@ import { type RESTPostAPIChannelWebhookJSONBody, type RESTPostAPIChannelWebhookResult, type RESTPostAPIGuildForumThreadsJSONBody, - type RESTPostAPISendSoundboardSoundResult, type RESTPostAPISoundboardSendSoundJSONBody, type RESTPutAPIChannelPermissionJSONBody, type RESTPutAPIChannelRecipientJSONBody, @@ -702,11 +701,11 @@ export class ChannelsAPI { body: RESTPostAPISoundboardSendSoundJSONBody, { auth, signal }: Pick = {}, ) { - return this.rest.post(Routes.sendSoundboardSound(channelId), { + await this.rest.post(Routes.sendSoundboardSound(channelId), { auth, body, signal, - }) as Promise; + }); } /**