diff --git a/couchpotato/core/providers/automation/base.py b/couchpotato/core/providers/automation/base.py index ea227ce0..e57f5c63 100644 --- a/couchpotato/core/providers/automation/base.py +++ b/couchpotato/core/providers/automation/base.py @@ -13,7 +13,7 @@ class Automation(Provider): enabled_option = 'automation_enabled' http_time_between_calls = 2 - interval = 86400 + interval = 1800 last_checked = 0 def __init__(self): diff --git a/couchpotato/core/providers/automation/goodfilms/main.py b/couchpotato/core/providers/automation/goodfilms/main.py index 266a284c..e1125615 100644 --- a/couchpotato/core/providers/automation/goodfilms/main.py +++ b/couchpotato/core/providers/automation/goodfilms/main.py @@ -9,6 +9,8 @@ class Goodfilms(Automation): url = 'http://goodfil.ms/%s/queue?page=%d&without_layout=1' + interval = 1800 + def getIMDBids(self): if not self.conf('automation_username'): diff --git a/couchpotato/core/providers/automation/letterboxd/main.py b/couchpotato/core/providers/automation/letterboxd/main.py index 7bae2ad5..1f106dd1 100644 --- a/couchpotato/core/providers/automation/letterboxd/main.py +++ b/couchpotato/core/providers/automation/letterboxd/main.py @@ -12,6 +12,8 @@ class Letterboxd(Automation): url = 'http://letterboxd.com/%s/watchlist/' pattern = re.compile(r'(.*)\((\d*)\)') + interval = 1800 + def getIMDBids(self): urls = splitString(self.conf('automation_urls'))