mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-11 17:27:42 +08:00
Disabling unwanted full rescan every 5 minutes.
This commit is contained in:
parent
42cf864c19
commit
074633bcf3
1 changed files with 3 additions and 2 deletions
|
@ -97,8 +97,9 @@ def sync_episodes():
|
||||||
# Close database connection
|
# Close database connection
|
||||||
c.close()
|
c.close()
|
||||||
|
|
||||||
for updated_episode in episodes_to_update:
|
# TODO: Commented until I find a way to make it store only episodes really updated.
|
||||||
store_subtitles(path_replace(updated_episode[1]))
|
#for updated_episode in episodes_to_update:
|
||||||
|
# store_subtitles(path_replace(updated_episode[1]))
|
||||||
|
|
||||||
for added_episode in episodes_to_add:
|
for added_episode in episodes_to_add:
|
||||||
store_subtitles(path_replace(added_episode[3]))
|
store_subtitles(path_replace(added_episode[3]))
|
||||||
|
|
Loading…
Reference in a new issue