Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
Indentation error
  • Loading branch information
markop159 authored Jul 26, 2021
1 parent dea8754 commit eab3931
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions default.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,11 @@ def playPath(path, title = "", plot=""):
is_helper = inputstreamhelper.Helper(PROTOCOL, drm=DRM)
if is_helper.check_inputstream():
li = xbmcgui.ListItem(path=path)
li.setMimeType('application/xml+dash')
if PY2:
li.setProperty('inputstreamaddon', is_helper.inputstream_addon)
else:
li.setProperty('inputstream', is_helper.inputstream_addon)
li.setMimeType('application/xml+dash')
if PY2:
li.setProperty('inputstreamaddon', is_helper.inputstream_addon)
else:
li.setProperty('inputstream', is_helper.inputstream_addon)
li.setProperty('inputstream.adaptive.manifest_type', PROTOCOL)
li.setProperty('inputstream.adaptive.license_type', DRM)
if max_bandwidth:
Expand Down

0 comments on commit eab3931

Please sign in to comment.