diff --git a/couchpotato/core/plugins/base.py b/couchpotato/core/plugins/base.py index 914bc89..902dd94 100644 --- a/couchpotato/core/plugins/base.py +++ b/couchpotato/core/plugins/base.py @@ -169,6 +169,7 @@ class Plugin(object): def setCache(self, cache_key, value, timeout = 300): log.debug('Setting cache %s' % cache_key) Env.get('cache').set(cache_key, value, timeout) + return value def isDisabled(self): return not self.isEnabled()