From 6bd407e8a2dd1bea834bc7858bac911bde0614b7 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Tue, 15 Oct 2024 00:34:19 -0400 Subject: [PATCH] Fix json for quoter --- src/equicordplugins/quoter/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/equicordplugins/quoter/index.tsx b/src/equicordplugins/quoter/index.tsx index 70ba9d87..520a61df 100644 --- a/src/equicordplugins/quoter/index.tsx +++ b/src/equicordplugins/quoter/index.tsx @@ -195,7 +195,7 @@ function registerStyleChange(style) { } async function setIsUserCustomCapable() { - const allowList: string[] = await fetch("https://raw.githubusercontent.com/Equicord/Equibored/main/quoterusers.json").then(e => e.json()); + const allowList: string[] = await fetch("https://raw.githubusercontent.com/Equicord/Equibored/main/misc/quoterusers.json").then(e => e.json()); isUserCustomCapable = allowList.includes(UserStore.getCurrentUser().id); }