Increase settings UI poll interval to reduce broken requests.

This commit is contained in:
Kailash Nadh 2024-10-14 10:52:17 +05:30
parent 30be235e2a
commit 6258fd5cee

View file

@ -210,7 +210,7 @@ export default Vue.extend({
this.$root.loadConfig(); this.$root.loadConfig();
this.getSettings(); this.getSettings();
}); });
}, 500); }, 1000);
}, () => { }, () => {
this.isLoading = false; this.isLoading = false;
}); });