From 95c3bcac7d33cc87f24cb58ad9dd3a07cf6c8379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Thu, 31 Oct 2019 12:56:12 -0400 Subject: [PATCH] Small fix to episodes to upgrade list SQL query. --- bazarr/get_subtitle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/get_subtitle.py b/bazarr/get_subtitle.py index 36a51079a..f8d98229f 100644 --- a/bazarr/get_subtitle.py +++ b/bazarr/get_subtitle.py @@ -1022,7 +1022,7 @@ def upgrade_subtitles(): "table_history.sonarrEpisodeId WHERE action IN " "(" + ','.join(map(str, query_actions)) + ") AND timestamp > ? AND " "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,)) upgradable_episodes_not_perfect = []