Improved couldBeReleased check. fixes #123

This commit is contained in:
Ruud
2012-04-22 20:11:59 +02:00
parent 76e29e6a7a
commit 7c25f406b0
+1 -1
View File
@@ -357,7 +357,7 @@ class Searcher(Plugin):
return True
# Dvd should be released
if dates.get('dvd') < now:
if dates.get('dvd') > 0 and dates.get('dvd') < now:
return True