From 1fedbe61c2d9101c62a807a72e8bab72fff0b409 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Mon, 3 Oct 2022 19:18:00 +0000 Subject: [PATCH] fix: i hate u stupid piece of argggggg. fmt urself automatically for once in ur stupid life --- rest/createRequestBody.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rest/createRequestBody.ts b/rest/createRequestBody.ts index e07e7cc99..07b7e6a7a 100644 --- a/rest/createRequestBody.ts +++ b/rest/createRequestBody.ts @@ -39,11 +39,11 @@ export function createRequestBody(rest: RestManager, options: CreateRequestBodyO // WHEN CREATING A STICKER, DISCORD WANTS FORM DATA ONLY if (options.url?.endsWith("/stickers") && options.method === "POST") { - form.append( - `file`, - (options.body.file as FileContent[])[0].blob, - (options.body.file as FileContent[])[0].name, - ); + form.append( + `file`, + (options.body.file as FileContent[])[0].blob, + (options.body.file as FileContent[])[0].name, + ); form.append(`name`, options.body.name as string); form.append(`description`, options.body.description as string); form.append(`tags`, options.body.tags as string);