mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-25 07:15:56 +08:00
Small fix to episodes to upgrade list SQL query.
This commit is contained in:
parent
3afaa501d8
commit
95c3bcac7d
1 changed files with 1 additions and 1 deletions
|
@ -1022,7 +1022,7 @@ def upgrade_subtitles():
|
||||||
"table_history.sonarrEpisodeId WHERE action IN "
|
"table_history.sonarrEpisodeId WHERE action IN "
|
||||||
"(" + ','.join(map(str, query_actions)) + ") AND timestamp > ? AND "
|
"(" + ','.join(map(str, query_actions)) + ") AND timestamp > ? AND "
|
||||||
"score is not null" + series_monitored_only_query_string +
|
"score is not null" + series_monitored_only_query_string +
|
||||||
"GROUP BY table_history.video_path, table_history.language",
|
" GROUP BY table_history.video_path, table_history.language",
|
||||||
(minimum_timestamp,))
|
(minimum_timestamp,))
|
||||||
|
|
||||||
upgradable_episodes_not_perfect = []
|
upgradable_episodes_not_perfect = []
|
||||||
|
|
Loading…
Reference in a new issue