Modify separator for verifypeer

This commit is contained in:
warwickh 2022-01-28 11:09:11 +11:00
parent b9a556eded
commit ec86d2abdd
1 changed files with 2 additions and 2 deletions

View File

@ -909,7 +909,7 @@ class Connection(object):
#xbmc.log("Requesting %s"%str(req.full_url),xbmc.LOGDEBUG)
return_url = req.full_url
if self._insecure:
return_url += '|verifypeer=false'
return_url += '&verifypeer=false'
xbmc.log("Request is insecure %s"%return_url,level=xbmc.LOGDEBUG)
return return_url
@ -958,7 +958,7 @@ class Connection(object):
#xbmc.log("Requesting %s"%str(req.full_url),xbmc.LOGDEBUG)
return_url = req.full_url
if self._insecure:
return_url += '|verifypeer=false'
return_url += '&verifypeer=false'
xbmc.log("Request is insecure %s"%return_url,level=xbmc.LOGDEBUG)
return return_url