1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-10 09:56:24 +00:00

fix: dont animate banners if the setting is off

This commit is contained in:
Luna 2024-05-29 17:36:24 -04:00
parent 03d2691fff
commit 052c4d928d

View file

@ -44,7 +44,10 @@ const useFetchMemberProfile = (userId: string): string => {
}, []);
if (!profile?.banner) return "";
return `https://cdn.discordapp.com/banners/${userId}/${profile.banner}`;
const extension = settings.store.animate && profile.banner.startsWith("a_")
? ".gif"
: ".png";
return `https://cdn.discordapp.com/banners/${userId}/${profile.banner}${extension}`;
};
export default definePlugin({
name: "BannersEverywhere",
@ -83,7 +86,9 @@ export default definePlugin({
memberListBanner: ErrorBoundary.wrap(({ user }: { user: User; }) => {
let url: string | null = null;
if (Vencord.Plugins.isPluginEnabled("USRBG")) {
// usrbg api has no way of telling if the banner is animated or not
// if the user doesnt want animated banners, just get rid of usrbg until there is a way to tell
if (settings.store.animate && Vencord.Plugins.isPluginEnabled("USRBG")) {
const USRBG = Vencord.Plugins.plugins.USRBG as unknown as typeof import("../usrbg/index").default;
url = USRBG.getImageUrl(user.id);
}