Skip to content

Commit

Permalink
Drop filename for url arg, but add kodi_type
Browse files Browse the repository at this point in the history
  • Loading branch information
croneter committed Apr 13, 2019
1 parent 4c933e9 commit 842413d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/lib/webservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ def strm(self):
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

Expand Down

0 comments on commit 842413d

Please sign in to comment.