Fix shows in addon mode, not directplay

This commit is contained in:
Matt 2019-12-13 07:32:28 -05:00
parent 60cc67eb15
commit 146aed33e9
1 changed files with 2 additions and 2 deletions

View File

@ -188,12 +188,12 @@ class TVShows(KodiDb):
obj['TopLevel'] = "%s\\" % dirname(dirname(obj['Path'])) obj['TopLevel'] = "%s\\" % dirname(dirname(obj['Path']))
else: else:
obj['Path'] = "%s/" % obj['Path'] obj['Path'] = "%s/" % obj['Path']
obj['TopLevel'] = "plugin://plugin.video.jellyfin/%s/" % obj['LibraryId'] obj['TopLevel'] = "plugin://plugin.video.jellyfin/"
if not validate(obj['Path']): if not validate(obj['Path']):
raise Exception("Failed to validate path. User stopped.") raise Exception("Failed to validate path. User stopped.")
else: else:
obj['TopLevel'] = "plugin://plugin.video.jellyfin/" obj['TopLevel'] = "plugin://plugin.video.jellyfin/%s/" % obj['LibraryId']
obj['Path'] = "%s%s/" % (obj['TopLevel'], obj['Id']) obj['Path'] = "%s%s/" % (obj['TopLevel'], obj['Id'])
@stop() @stop()