From 46121656f88b23aa4002a8265729f7c19c98cadc Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Wed, 3 Aug 2016 18:35:55 -0500 Subject: [PATCH] Fix fail detection for tvshows Due to missing end slash - for xbmcfvs.exists() --- resources/lib/itemtypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/itemtypes.py b/resources/lib/itemtypes.py index c75a32ac..51abdf3c 100644 --- a/resources/lib/itemtypes.py +++ b/resources/lib/itemtypes.py @@ -1066,7 +1066,7 @@ class TVShows(Items): path = "%s/" % playurl toplevelpath = "%s/" % dirname(dirname(path)) - if not self.pathValidation(playurl): + if not self.pathValidation(path): return False window('emby_pathverified', value="true")