From 0f1e8eeff901d4d87d90435d4c20d26c48a4c565 Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 25 Sep 2012 10:43:46 +0200 Subject: [PATCH] Make sure to always search for old movies --- couchpotato/core/plugins/searcher/main.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index 567b84ea..670841f2 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -410,6 +410,11 @@ class Searcher(Plugin): if not dates or (dates.get('theater', 0) == 0 and dates.get('dvd', 0) == 0): return True else: + + # For movies before 1972 + if dates.get('theater', 0) < 0 or dates.get('dvd', 0) < 0: + return True + if wanted_quality in pre_releases: # Prerelease 1 week before theaters if dates.get('theater') - 604800 < now: