#141 Take monitored status into account for Missing Available Movies check

This commit is contained in:
Michael Porter 2019-06-24 18:57:02 +01:00
parent 0a6a23bc66
commit ec73dd8c0f

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: