From b454eec55252658ab1261e75f03ba63f1127f7cb Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 24 Feb 2016 15:05:59 +0100 Subject: [PATCH] Updater check every 24h --- couchpotato/core/_base/updater/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/_base/updater/main.py b/couchpotato/core/_base/updater/main.py index 6435a15..d28ac76 100644 --- a/couchpotato/core/_base/updater/main.py +++ b/couchpotato/core/_base/updater/main.py @@ -72,7 +72,7 @@ class Updater(Plugin): fireEvent('schedule.remove', 'updater.check', single = True) if self.isEnabled(): - fireEvent('schedule.interval', 'updater.check', self.autoUpdate, hours = 6) + fireEvent('schedule.interval', 'updater.check', self.autoUpdate, hours = 24) self.autoUpdate() # Check after enabling def autoUpdate(self):