Add files via upload

This commit is contained in:
Kenneth Hendricks 2026-01-25 12:53:27 -05:00 committed by GitHub
parent c946bc545d
commit 7d4bf2bb04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -383,8 +383,8 @@ document.addEventListener("DOMContentLoaded", () => {
}
};
// Event listeners
document.addEventListener("DOMContentLoaded", async () => {
// Initialize settings on page load
(async () => {
// First load settings to ensure we have the correct values
await loadSettings();
// Then load filter stats
@ -395,7 +395,7 @@ document.addEventListener("DOMContentLoaded", () => {
// Log current settings for debugging
console.log("Current update frequency:", updateFrequency.value);
await window.checkCurrentSettings();
});
})();
saveButton.addEventListener("click", saveSettings);