From ca94d48f8b357886a133ab4b3f4825e7bf824e27 Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 22 Jan 2014 23:31:45 +0100 Subject: [PATCH] No need to try and cach htmldata --- couchpotato/core/providers/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/base.py b/couchpotato/core/providers/base.py index 7f755c3c..93e0900f 100644 --- a/couchpotato/core/providers/base.py +++ b/couchpotato/core/providers/base.py @@ -95,7 +95,7 @@ class Provider(Plugin): def getHTMLData(self, url, **kwargs): - cache_key = '%s%s' % (md5(url), md5('%s' % kwargs.get('data', {}))) + cache_key = md5(url) return self.getCache(cache_key, url, **kwargs)