diff options
author | morpheus65535 <[email protected]> | 2021-05-13 06:32:51 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-05-13 06:32:51 -0400 |
commit | 9993f123f17b076aabd6c12d6a52ff47f099123e (patch) | |
tree | dc0823a125fa4fdc345afd3064a5d635373fd50b | |
parent | cf35f4a9d2ccb792e0fbaa6d110ed5dd39af212d (diff) | |
download | bazarr-9993f123f17b076aabd6c12d6a52ff47f099123e.tar.gz bazarr-9993f123f17b076aabd6c12d6a52ff47f099123e.zip |
no log: fixed typo in SQL queryv0.9.6-beta.6
-rw-r--r-- | bazarr/get_subtitle.py | 2 |
1 files changed, 1 insertions, 1 deletions
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,)) |