From 28392c09e27e0794d219ee9b61616939013208cd Mon Sep 17 00:00:00 2001 From: cheetah Date: Fri, 14 Mar 2025 18:51:19 +0000 Subject: [PATCH] fixed race cond --- html/index.html | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/html/index.html b/html/index.html index dd429c0..dbead46 100644 --- a/html/index.html +++ b/html/index.html @@ -245,12 +245,13 @@ return a }) this.$http.post(window.location.pathname + 'config', storeConfig) - .then(response => {}) - .then(this.$http.post(window.location.pathname + 'restart')) - .then(() => { - document.body.style = 'display:none' - setTimeout(() => window.location.reload(), 1e3) - }) + .then(response => { + document.body.style = 'display:none' + setTimeout(() => window.location.reload(), 1e3) + this.$http.post(window.location.pathname + 'restart') + .then(() => { + }) + }) }, addAlarm() { this.configData.alarms.push({ @@ -277,4 +278,4 @@ - \ No newline at end of file +