diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-04-16 01:51:52 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-04-16 01:51:52 +1000 |
commit | b438f2b071dbaa82371016168ab843f24be5063e (patch) | |
tree | eea50564f94b6992089ce097455404d89cd0ba56 /src/api/routes/guilds/#guild_id/stickers.ts | |
parent | generated files (diff) | |
download | server-b438f2b071dbaa82371016168ab843f24be5063e.tar.xz |
Rewrite getRouteDescriptions, fix message route not appearing in openapi spec
Diffstat (limited to 'src/api/routes/guilds/#guild_id/stickers.ts')
-rw-r--r-- | src/api/routes/guilds/#guild_id/stickers.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/guilds/#guild_id/stickers.ts b/src/api/routes/guilds/#guild_id/stickers.ts index 2da9a21e..88f9a40e 100644 --- a/src/api/routes/guilds/#guild_id/stickers.ts +++ b/src/api/routes/guilds/#guild_id/stickers.ts @@ -105,7 +105,7 @@ router.post( }, ); -export function getStickerFormat(mime_type: string) { +function getStickerFormat(mime_type: string) { switch (mime_type) { case "image/apng": return StickerFormatType.APNG; |