From 1df4c4de4e45dd165364b67f89f3e1279f4b5895 Mon Sep 17 00:00:00 2001 From: byeoon <47872200+byeoon@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:50:32 -0500 Subject: [PATCH] fix animated gifs i hope --- src/plugins/copyStickerLinks/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/copyStickerLinks/index.tsx b/src/plugins/copyStickerLinks/index.tsx index f1b12c629..f298abfb7 100644 --- a/src/plugins/copyStickerLinks/index.tsx +++ b/src/plugins/copyStickerLinks/index.tsx @@ -44,7 +44,7 @@ function getUrl(data: Data) { if (data.format_type === 1 || data.format_type === 3) return `https:${window.GLOBAL_ENV.MEDIA_PROXY_ENDPOINT}/stickers/${data.id}.${StickerExt[data.format_type]}?size=4096&lossless=true`; - return "https://cdn.discordapp.com"; + return `https://cdn.discordapp.com/stickers/${data.id}.${StickerExt[data.format_type]}?size=4096&lossless=true`; } async function fetchSticker(id: string) {