Different studio fix

PlayUtils was erroring on empty list - this is a better fix than the
last i think
This commit is contained in:
xnappo 2015-03-18 15:49:49 -05:00
parent 200040dd62
commit 62b3f8da2d
2 changed files with 5 additions and 4 deletions

View File

@ -94,12 +94,10 @@ class API():
if item.get("SeriesStudio") != None and item.get("SeriesStudio") != '':
studios.append(item.get("SeriesStudio"))
else:
if(item.get("Studios") != [] and item.get("Studios") != None):
if(item.get("Studios") != []):
for studio_string in item.get("Studios"):
temp=studio_string.get("Name")
studios.append(temp)
else:
studios.append("")
return studios
def getMediaStreams(self, item, mediaSources=False):

View File

@ -144,7 +144,10 @@ class PlaybackUtils():
# Process Studios
studios = API().getStudios(result)
studio = studios[0]
if studios == []:
studio = ""
else:
studio = studios[0]
listItem.setInfo('video', {'studio' : studio})
# play info