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

no log: fixed tasks view when running in dev environment (--no-tasks).

pull/2478/head
morpheus65535 12 months ago
parent 86b889d3b6
commit c5a5dc9ddf

@ -47,6 +47,10 @@ ONE_YEAR_IN_SECONDS = 60 * 60 * 24 * 365
def a_long_time_from_now(job):
# job isn't scheduled at all
if job.next_run_time is None:
return True
# currently defined as more than a year from now
delta = job.next_run_time - datetime.now(job.next_run_time.tzinfo)
return delta.total_seconds() > ONE_YEAR_IN_SECONDS

Loading…
Cancel
Save