From 9993f123f17b076aabd6c12d6a52ff47f099123e Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Thu, 13 May 2021 06:32:51 -0400 Subject: [PATCH] no log: fixed typo in 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 867c6f728..eaa82e125 100644 --- a/bazarr/get_subtitle.py +++ b/bazarr/get_subtitle.py @@ -747,7 +747,7 @@ def series_download_subtitles(no): episodes_details = database.execute("SELECT table_episodes.path, table_episodes.missing_subtitles, monitored, " "table_episodes.sonarrEpisodeId, table_episodes.scene_name, table_shows.tags, " "table_shows.seriesType, table_episodes.audio_language, table_shows.title, " - "table_episodes.season, table_episodes.episode, table_episodes.title as episodesTitle " + "table_episodes.season, table_episodes.episode, table_episodes.title as episodeTitle " "FROM table_episodes INNER JOIN table_shows on table_shows.sonarrSeriesId = " "table_episodes.sonarrSeriesId WHERE table_episodes.sonarrSeriesId=? and " "missing_subtitles!='[]'" + get_exclusion_clause('series'), (no,))