Merge pull request #145 from mikeporterdev/develop

#141 Take monitored status into account for Missing Available Movies check
This commit is contained in:
Nicholas St. Germain 2019-08-09 15:53:45 -05:00 committed by GitHub
commit 134a53f11a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ class RadarrAPI(object):
return
for movie in movies:
if not movie.downloaded:
if movie.monitored and not movie.downloaded:
if movie.isAvailable:
ma = 0
else: