diff options
-rw-r--r-- | src/plugins/apiBadges.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/apiBadges.tsx b/src/plugins/apiBadges.tsx index 48e9eb9..aaa1860 100644 --- a/src/plugins/apiBadges.tsx +++ b/src/plugins/apiBadges.tsx @@ -47,9 +47,11 @@ const ContributorBadge: ProfileBadge = { link: "https://github.com/Vendicated/Vencord" }; -const DonorBadges = {} as Record<string, Pick<ProfileBadge, "image" | "description">[]>; +let DonorBadges = {} as Record<string, Pick<ProfileBadge, "image" | "description">[]>; async function loadBadges(noCache = false) { + DonorBadges = {}; + const init = {} as RequestInit; if (noCache) init.cache = "no-cache"; |