From 5ca2488e9a2104e97daa4d32b1ba0569f6238659 Mon Sep 17 00:00:00 2001 From: cheetah Date: Fri, 14 Mar 2025 18:44:18 +0000 Subject: [PATCH] fixed race cond --- html/index.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/html/index.html b/html/index.html index b7a5de5..2c3ff2e 100644 --- a/html/index.html +++ b/html/index.html @@ -171,11 +171,12 @@ return a }) this.$http.post(window.location.pathname + 'config', storeConfig) - .then(response => {}) - .then(this.$http.post(window.location.pathname + 'restart')) - .then(() => { + .then(response => { document.body.style = 'display:none' setTimeout(() => window.location.reload(), 1e3) + this.$http.post(window.location.pathname + 'restart') + .then(() => { + }) }) }, addAlarm() { @@ -201,4 +202,4 @@ - \ No newline at end of file +