diff --git a/endpoints.go b/endpoints.go index f15e797f1..d6492fa44 100644 --- a/endpoints.go +++ b/endpoints.go @@ -33,6 +33,7 @@ var ( EndpointWebhooks = EndpointAPI + "webhooks/" EndpointStickers = EndpointAPI + "stickers/" EndpointStageInstances = EndpointAPI + "stage-instances" + EndpointStickerImages = EndpointDiscord + "stickers/" EndpointCDN = "https://cdn.discordapp.com/" EndpointCDNAttachments = EndpointCDN + "attachments/" @@ -152,7 +153,7 @@ var ( case StickerFormatTypeGIF: ext = ".gif" } - return EndpointCDNStickers + sID + ext + return EndpointStickerImages + sID + ext } EndpointNitroStickersPacks = EndpointAPI + "/sticker-packs"