From 6258fd5ceef5052a6df003e4b2395c7f01e4aa48 Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Mon, 14 Oct 2024 10:52:17 +0530 Subject: [PATCH] Increase settings UI poll interval to reduce broken requests. --- frontend/src/views/Settings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/Settings.vue b/frontend/src/views/Settings.vue index 6f519350..16c929c5 100644 --- a/frontend/src/views/Settings.vue +++ b/frontend/src/views/Settings.vue @@ -210,7 +210,7 @@ export default Vue.extend({ this.$root.loadConfig(); this.getSettings(); }); - }, 500); + }, 1000); }, () => { this.isLoading = false; });