Fix json for quoter

This commit is contained in:
thororen1234 2024-10-15 00:34:19 -04:00
parent bea836214e
commit 6bd407e8a2

View file

@ -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);
}