stuff
This commit is contained in:
parent
225864a324
commit
f72d3c342e
|
@ -3945,12 +3945,24 @@
|
|||
}
|
||||
return null;
|
||||
};
|
||||
BDFDB.BDUtils.toggleSettings = function (key, state) {
|
||||
if (key) {
|
||||
let currentState = BDFDB.BDUtils.getSettings(key);
|
||||
if (state === true) {
|
||||
if (currentState === false) BdApi.enableSetting(key);
|
||||
}
|
||||
else if (state === false) {
|
||||
if (currentState === true) BdApi.disableSetting(key);
|
||||
}
|
||||
else if (currentState === true || currentState === false) BDFDB.BDUtils.toggleSettings(key, !currentState);
|
||||
}
|
||||
};
|
||||
BDFDB.BDUtils.getSettings = function (key) {
|
||||
if (key) return BdApi.isSettingEnabled(key);
|
||||
else return BDFDB.ReactUtils.getValue(BdApi.getBDData("settings"), `${BDFDB.DiscordUtils.getBuilt()}.settings`);
|
||||
};
|
||||
BDFDB.BDUtils.isAutoLoadEnabled = function () {
|
||||
return BDFDB.BDUtils.getSettings("fork-ps-5") === true || BDFDB.BDUtils.isPluginEnabled("Restart-No-More") || BDFDB.BDUtils.isPluginEnabled("Restart No More");
|
||||
return BDFDB.BDUtils.getSettings(BdApi.settings["Automatic Loading"].id) === true;
|
||||
};
|
||||
|
||||
var DiscordClassModules = {};
|
||||
|
@ -9971,6 +9983,20 @@
|
|||
BDFDB.LibraryComponents[component] = "div";
|
||||
}
|
||||
|
||||
// REMOVE ONCE BD IS FIXED
|
||||
if (BDFDB.BDUtils.getSettings(BdApi.settings["Public Servers"].id)) {
|
||||
let failed = false;
|
||||
try {BDFDB.BDUtils.toggleSettings(BdApi.settings["Public Servers"].id, false);}
|
||||
catch (err) {
|
||||
failed = true;
|
||||
if (BDFDB.BDUtils.getSettings(BdApi.settings["Automatic Loading"].id)) {
|
||||
BDFDB.BDUtils.toggleSettings(BdApi.settings["Automatic Loading"].id, false);
|
||||
BDFDB.TimeUtils.timeout(_ => {BDFDB.BDUtils.toggleSettings(BdApi.settings["Automatic Loading"].id, true)}, 3000);
|
||||
}
|
||||
}
|
||||
if (!failed) BDFDB.BDUtils.toggleSettings(BdApi.settings["Public Servers"].id, true);
|
||||
}
|
||||
|
||||
BDFDB.loaded = true;
|
||||
window.BDFDB = BDFDB;
|
||||
InternalBDFDB.reloadLib = _ => {
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue