1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-26 01:27:07 +00:00

Use scheduler instead of direct call to function while updating all episodes

This commit is contained in:
morpheus65535 2018-02-21 22:19:18 -05:00
parent 017b8746c2
commit bb65216ddf

View file

@ -55,8 +55,8 @@ if os.path.exists(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'))
except:
pass
else:
from get_episodes import update_all_episodes
update_all_episodes()
from scheduler import execute_now
execute_now('update_all_episodes')
# Commit change to db
db.commit()