Commit 53dae328 authored by Ozzie Isaacs's avatar Ozzie Isaacs

Fix multiple messages on windows after change config with reboot

parent 018f3ca2
...@@ -611,7 +611,10 @@ $(function() { ...@@ -611,7 +611,10 @@ $(function() {
if (xhr.status < 400) { if (xhr.status < 400) {
$("#spinning_success").hide(); $("#spinning_success").hide();
clearInterval(rebootInterval); clearInterval(rebootInterval);
handle_response(data.result); if (data.result) {
handle_response(data.result);
data.result = "";
}
} }
}, },
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment