fix: settings popup not appearing on disabled pages

This commit is contained in:
SethBurkart123
2025-06-06 10:27:00 +10:00
parent 074c2ff4bb
commit d59802d4c3
2 changed files with 2 additions and 4 deletions
+1 -4
View File
@@ -64,12 +64,9 @@ async function init() {
}
await main();
plugins.Monofile();
if (settingsState.onoff) {
// Initialize legacy plugins
plugins.Monofile();
// Initialize new plugin system
await plugins.initializePlugins();
}
+1
View File
@@ -631,6 +631,7 @@ export function init() {
}, 1000);
} else {
handleDisabled();
InjectCustomIcons();
window.addEventListener("load", handleDisabled);
}
}