Skip to content

Commit fb5dbc9

Browse files
Restore SSL verification
1 parent 4d280fa commit fb5dbc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/inputstreamhelper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def _http_request(self, download=False, message=None):
176176
dialog = xbmcgui.Dialog()
177177

178178
try:
179-
req = requests.get(self._url, stream=download, verify=False)
179+
req = requests.get(self._url, stream=download)
180180
self._log('Response code: {0}'.format(req.status_code))
181181
if not download:
182182
self._log('Response: {0}'.format(req.content))

0 commit comments

Comments
 (0)