diff --git a/src/helpers/webhooks/send_webhook.ts b/src/helpers/webhooks/send_webhook.ts index d3956eadc..0a42ae4dd 100644 --- a/src/helpers/webhooks/send_webhook.ts +++ b/src/helpers/webhooks/send_webhook.ts @@ -66,9 +66,8 @@ export async function sendWebhook( const result = await rest.runMethod( "post", - `${endpoints.WEBHOOK(webhookId, webhookToken)}?wait=${options.wait ?? false}${ - options.threadId ? `&thread_id=${options.threadId}` : "" - }`, + `${endpoints.WEBHOOK(webhookId, webhookToken)}?wait=${options.wait ?? + false}${options.threadId ? `&thread_id=${options.threadId}` : ""}`, { ...options, allowed_mentions: options.allowedMentions, diff --git a/src/util/mod.ts b/src/util/mod.ts index 5adeab630..b2d22ebce 100644 --- a/src/util/mod.ts +++ b/src/util/mod.ts @@ -2,6 +2,7 @@ export * from "./bigint.ts"; export * from "./cache_members.ts"; export * from "./collection.ts"; export * from "./constants.ts"; +export * from "./hash.ts"; export * from "./loop_object.ts"; export * from "./permissions.ts"; export * from "./utils.ts";