mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix fail detection for tvshows
Due to missing end slash - for xbmcfvs.exists()
This commit is contained in:
parent
367440dc7f
commit
46121656f8
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue