(fix)Fixed a bug where EmoteCloner would clone stickers at the lowest resolution (now defaults to 2048)

This commit is contained in:
byron 2024-03-31 23:15:28 -04:00
parent 650f4050e1
commit abf48db04d
2 changed files with 6 additions and 2 deletions

View file

@ -56,7 +56,7 @@ function getUrl(data: Data) {
if (data.t === "Emoji")
return `${location.protocol}//${window.GLOBAL_ENV.CDN_HOST}/emojis/${data.id}.${data.isAnimated ? "gif" : "png"}`;
return `${window.GLOBAL_ENV.MEDIA_PROXY_ENDPOINT}/stickers/${data.id}.${StickerExt[data.format_type]}`;
return `${window.GLOBAL_ENV.MEDIA_PROXY_ENDPOINT}/stickers/${data.id}.${StickerExt[data.format_type]}?size=2048`;
}
async function fetchSticker(id: string) {
@ -362,7 +362,7 @@ export default definePlugin({
name: "EmoteCloner",
description: "Allows you to clone Emotes & Stickers to your own server (right click them)",
tags: ["StickerCloner"],
authors: [Devs.Ven, Devs.Nuckyz],
authors: [Devs.Ven, Devs.Nuckyz, Devs.Byron],
contextMenus: {
"message": messageContextMenuPatch,
"expression-picker": expressionPickerPatch

View file

@ -425,6 +425,10 @@ export const Devs = /* #__PURE__*/ Object.freeze({
newwares: {
name: "newwares",
id: 421405303951851520n
},
Byron: {
name: "byeoon",
id: 1167275288036655133n
}
} satisfies Record<string, Dev>);