Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Commit

Permalink
Don't verify SYNO downloader thingymajig
Browse files Browse the repository at this point in the history
fix #4641
  • Loading branch information
RuudBurger committed Feb 10, 2015
1 parent b1fc8ad commit 920d3cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion couchpotato/core/downloaders/synology.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _logout(self):
def _req(self, url, args, files = None):
response = {'success': False}
try:
req = requests.post(url, data = args, files = files)
req = requests.post(url, data = args, files = files, verify = False)
req.raise_for_status()
response = json.loads(req.text)
if response['success']:
Expand Down

0 comments on commit 920d3cb

Please sign in to comment.