diff options
author | morpheus65535 <[email protected]> | 2021-05-31 12:30:53 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-05-31 12:30:53 -0400 |
commit | 85cad66fe0e9de2949c351adb816119cf9b59fd6 (patch) | |
tree | 6234ab96a9734dc3c62926c130b92881203f4b83 | |
parent | 3908175a2107f55dfd53104555498d368fd83763 (diff) | |
download | bazarr-85cad66fe0e9de2949c351adb816119cf9b59fd6.tar.gz bazarr-85cad66fe0e9de2949c351adb816119cf9b59fd6.zip |
Fixed exclusion of unmonitored movies when upgrading subtitles.
-rw-r--r-- | bazarr/get_subtitle.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bazarr/get_subtitle.py b/bazarr/get_subtitle.py index 2fd84faf9..50a6a4ee7 100644 --- a/bazarr/get_subtitle.py +++ b/bazarr/get_subtitle.py @@ -1459,6 +1459,7 @@ def upgrade_subtitles(): TableMovies.audio_language, TableMovies.sceneName, fn.MAX(TableHistoryMovie.timestamp).alias('timestamp'), + TableMovies.monitored, TableMovies.tags, TableMovies.radarrId)\ .join(TableMovies, on=(TableHistoryMovie.radarrId == TableMovies.radarrId))\ |