Fix to local trailers

For some reason, server reports local trailer, then querying may or may
not return a result
This commit is contained in:
angelblue05 2016-03-26 16:52:33 -05:00
parent a7f70a3145
commit 7c6451e839
1 changed files with 6 additions and 2 deletions

View File

@ -337,7 +337,11 @@ class Movies(Items):
% itemid
)
result = self.doUtils.downloadUrl(url)
trailer = "plugin://plugin.video.emby/trailer/?id=%s&mode=play" % result[0]['Id']
try:
trailer = "plugin://plugin.video.emby/trailer/?id=%s&mode=play" % result[0]['Id']
except IndexError:
self.logMsg("Failed to process local trailer.", 1)
trailer = None
else:
# Try to get the youtube trailer
try:
@ -348,7 +352,7 @@ class Movies(Items):
try:
trailerId = trailer.rsplit('=', 1)[1]
except IndexError:
self.logMsg("Failed to process trailer: %s" % trailer)
self.logMsg("Failed to process trailer: %s" % trailer, 1)
trailer = None
else:
trailer = "plugin://plugin.video.youtube/play/?video_id=%s" % trailerId