Fix update dates shown in local time format again

Fix "to update" history is shown again
This commit is contained in:
Ozzieisaacs
2019-07-21 13:28:55 +02:00
parent 5c6be5d6d0
commit 3e008ef29b
2 changed files with 8 additions and 8 deletions

View File

@ -663,7 +663,7 @@ def send_logfile(logtype):
@admi.route("/get_update_status", methods=['GET'])
@login_required_if_no_ano
def get_update_status():
return updater_thread.get_available_updates(request.method)
return updater_thread.get_available_updates(request.method, locale=get_locale())
@admi.route("/get_updater_status", methods=['GET', 'POST'])