From c8f1eb625042545ac85c847526ff507dee160d17 Mon Sep 17 00:00:00 2001 From: Alexandre Beloin Date: Thu, 5 Feb 2015 10:24:54 -0500 Subject: [PATCH] Disable ssl checking in synology client --- sickbeard/clients/download_station.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/clients/download_station.py b/sickbeard/clients/download_station.py index 62500ecc..25dc9fce 100644 --- a/sickbeard/clients/download_station.py +++ b/sickbeard/clients/download_station.py @@ -36,7 +36,7 @@ class DownloadStationAPI(GenericClient): auth_url = self.host + 'webapi/auth.cgi?api=SYNO.API.Auth&version=2&method=login&account=' + self.username + '&passwd=' + self.password + '&session=DownloadStation&format=sid' try: - self.response = self.session.get(auth_url) + self.response = self.session.get(auth_url, verify=False) self.auth = self.response.json()['data']['sid'] except: return None