From c90a42301212daaba78f2118997b26f4f6c95d7d Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 6 Jun 2014 11:23:21 +0200 Subject: [PATCH] Disable SSL verification --- couchpotato/core/plugins/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/base.py b/couchpotato/core/plugins/base.py index de6af555..311ce1ec 100644 --- a/couchpotato/core/plugins/base.py +++ b/couchpotato/core/plugins/base.py @@ -205,7 +205,7 @@ class Plugin(object): 'data': data if len(data) > 0 else None, 'timeout': timeout, 'files': files, - 'verify': verify_ssl, + 'verify': False, #verify_ssl, Disable for now as to many wrongly implemented certificates.. } method = 'post' if len(data) > 0 or files else 'get'