Commit 0df35dcf authored by Ozzieisaacs's avatar Ozzieisaacs

Update Updater

parent cc7dcfb3
...@@ -1305,9 +1305,11 @@ def get_updater_status(): ...@@ -1305,9 +1305,11 @@ def get_updater_status():
elif request.method == "GET": elif request.method == "GET":
try: try:
status['status'] = helper.updater_thread.get_update_status() status['status'] = helper.updater_thread.get_update_status()
except Exception as e: except AttributeError:
app.logger.exception(e) # thread is not active, occours after restart on update
status['status'] = 7 status['status'] = 7
except Exception:
status['status'] = 11
return json.dumps(status) return json.dumps(status)
......
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