Drop filename for url arg, but add kodi_type
This commit is contained in:
parent
885e8dd581
commit
d380aa8ac3
1 changed files with 2 additions and 2 deletions
|
@ -203,8 +203,8 @@ class RequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
|
|||
path += '&transcode=true'
|
||||
if params.get('kodi_id'):
|
||||
path += '&kodi_id=%s' % params['kodi_id']
|
||||
if params.get('Name'):
|
||||
path += '&filename=%s' % params['Name']
|
||||
if params.get('kodi_type'):
|
||||
path += '&kodi_type=%s' % params['kodi_type']
|
||||
self.wfile.write(bytes(path))
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue