New Domain Equicord.org

This commit is contained in:
thororen1234 2025-03-15 13:19:24 -04:00
parent 242d863a12
commit f51340778d
No known key found for this signature in database
5 changed files with 5 additions and 5 deletions

View file

@ -114,7 +114,7 @@ const DefaultSettings: Settings = {
cloud: {
authenticated: false,
url: "https://cloud.equicord.fyi/",
url: "https://cloud.equicord.org/",
settingsSync: false,
settingsSyncVersion: 0
},

View file

@ -40,7 +40,7 @@ interface BadgeCache {
let badgeImages;
// const API_URL = "https://clientmodbadges-api.herokuapp.com/";
const API_URL = "https://globalbadges.equicord.fyi/";
const API_URL = "https://globalbadges.equicord.org/";
const cache = new Map<string, BadgeCache>();
const EXPIRES = 1000 * 60 * 15;

View file

@ -195,7 +195,7 @@ function registerStyleChange(style) {
}
async function setIsUserCustomCapable() {
const allowList: string[] = await fetch("https://equicord.fyi/quoter").then(e => e.json()); // Override for memes - IF THIS IS ABUSED WILL WE TAKEN AWAY
const allowList: string[] = await fetch("https://equicord.org/quoter").then(e => e.json()); // Override for memes - IF THIS IS ABUSED WILL WE TAKEN AWAY
isUserCustomCapable = allowList.includes(UserStore.getCurrentUser().id);
}

View file

@ -34,7 +34,7 @@ const settings = definePluginSettings({
},
{
label: "UserPFP Backup DB",
value: "https://userpfp.equicord.fyi/data.json"
value: "https://userpfp.equicord.org/data.json"
}
]
}

View file

@ -64,7 +64,7 @@ async function loadBadges(url: string, noCache = false) {
async function loadAllBadges(noCache = false) {
const vencordBadges = await loadBadges("https://badges.vencord.dev/badges.json", noCache);
const equicordBadges = await loadBadges("https://equicord.fyi/badges", noCache);
const equicordBadges = await loadBadges("https://equicord.org/badges", noCache);
DonorBadges = vencordBadges;
EquicordDonorBadges = equicordBadges;