Fix direct play theme

This commit is contained in:
angelblue05 2016-12-20 02:12:58 -06:00
parent 15d04a5902
commit 6a1b574631

View file

@ -481,12 +481,11 @@ def getThemeMedia():
result = doUtils.downloadUrl(url) result = doUtils.downloadUrl(url)
# May be more than one theme # May be more than one theme
for theme in result['Items']: for theme in result['Items']:
putils = playutils.PlayUtils(theme)
if playback == "DirectPlay": if playback == "DirectPlay":
playurl = putils.directPlay() playurl = api.API(theme).get_file_path()
else: else:
playurl = putils.directStream() playurl = playutils.PlayUtils(theme).directStream()
pathstowrite += ('<file>%s</file>' % playurl.encode('utf-8')) pathstowrite += ('<file>%s</file>' % playurl.encode('utf-8'))
nfo_file.write( nfo_file.write(
@ -530,11 +529,10 @@ def getThemeMedia():
pathstowrite = "" pathstowrite = ""
# May be more than one theme # May be more than one theme
for theme in result['Items']: for theme in result['Items']:
putils = playutils.PlayUtils(theme)
if playback == "DirectPlay": if playback == "DirectPlay":
playurl = putils.directPlay() playurl = api.API(theme).get_file_path()
else: else:
playurl = putils.directStream() playurl = playutils.PlayUtils(theme).directStream()
pathstowrite += ('<file>%s</file>' % playurl.encode('utf-8')) pathstowrite += ('<file>%s</file>' % playurl.encode('utf-8'))
nfo_file.write( nfo_file.write(