mirror of
https://github.com/janeczku/calibre-web
synced 2024-12-25 17:40:31 +00:00
Fix for #959
This commit is contained in:
parent
f79d549910
commit
b1cb7123a3
@ -605,7 +605,10 @@ def render_task_status(tasklist):
|
|||||||
if 'starttime' not in task:
|
if 'starttime' not in task:
|
||||||
task['starttime'] = ""
|
task['starttime'] = ""
|
||||||
|
|
||||||
task['runtime'] = format_runtime(task['formRuntime'])
|
if 'formRuntime' not in task:
|
||||||
|
task['runtime'] = ""
|
||||||
|
else:
|
||||||
|
task['runtime'] = format_runtime(task['formRuntime'])
|
||||||
|
|
||||||
# localize the task status
|
# localize the task status
|
||||||
if isinstance( task['stat'], int ):
|
if isinstance( task['stat'], int ):
|
||||||
|
Loading…
Reference in New Issue
Block a user