From 7c25f406b0ef887f3ce810f975707706477f50bc Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 22 Apr 2012 20:11:59 +0200 Subject: [PATCH] Improved couldBeReleased check. fixes #123 --- couchpotato/core/plugins/searcher/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index ce675228..0159744a 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -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