diff --git a/resources/lib/itemtypes.py b/resources/lib/itemtypes.py index 9c87fb73..c978851f 100644 --- a/resources/lib/itemtypes.py +++ b/resources/lib/itemtypes.py @@ -341,8 +341,13 @@ class Movies(Items): except (KeyError, IndexError): trailer = None else: - trailerId = trailer.rsplit('=', 1)[1] - trailer = "plugin://plugin.video.youtube/play/?video_id=%s" % trailerId + 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 ##### GET THE FILE AND PATH #####