Fix trailer

This commit is contained in:
angelblue05 2015-12-24 16:45:18 -06:00
parent 0e15daa37a
commit 17913241a1

View file

@ -341,7 +341,12 @@ class Movies(Items):
except (KeyError, IndexError):
trailer = None
else:
try:
trailerId = trailer.rsplit('=', 1)[1]
except IndexError:
self.logMsg("Failed to process trailer: %s" % trailer)
trailer = None
else:
trailer = "plugin://plugin.video.youtube/play/?video_id=%s" % trailerId