Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/b738922b0cc097693d7b5ae19d37938ac6c700c1 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix for rare case where task won't be listed in system.

pull/427/head
Louis Vézina 6 years ago
parent db189c7773
commit b738922b0c

@ -1654,6 +1654,8 @@ def system():
if isinstance(job.trigger, CronTrigger):
if str(job.trigger.__getstate__()['fields'][0]) == "2100":
next_run = 'Never'
else:
next_run = pretty.date(job.next_run_time.replace(tzinfo=None))
else:
next_run = pretty.date(job.next_run_time.replace(tzinfo=None))

Loading…
Cancel
Save