#141 Take monitored status into account for Missing Available Movies check
This commit is contained in:
parent
0a6a23bc66
commit
ec73dd8c0f
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class RadarrAPI(object):
|
||||||
return
|
return
|
||||||
|
|
||||||
for movie in movies:
|
for movie in movies:
|
||||||
if not movie.downloaded:
|
if movie.monitored and not movie.downloaded:
|
||||||
if movie.isAvailable:
|
if movie.isAvailable:
|
||||||
ma = 0
|
ma = 0
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue