From e7b4de56f28337617ee665fe36ac34b4c7f1ae66 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 18 May 2013 20:30:48 +0200 Subject: [PATCH] Only run updater if enabled. fix #1756 --- 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 44ceebdd..88d22816 100644 --- a/couchpotato/core/_base/updater/main.py +++ b/couchpotato/core/_base/updater/main.py @@ -62,7 +62,7 @@ class Updater(Plugin): self.autoUpdate() # Check after enabling def autoUpdate(self): - if self.check() and self.conf('automatic') and not self.updater.update_failed: + if self.isEnabled() and self.check() and self.conf('automatic') and not self.updater.update_failed: if self.updater.doUpdate(): # Notify before restarting