mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-25 17:40:31 +00:00
Correct filepath when entering data to database
This commit is contained in:
parent
2adad4250a
commit
60cc67eb15
2 changed files with 2 additions and 2 deletions
|
@ -188,7 +188,7 @@ class TVShows(KodiDb):
|
|||
obj['TopLevel'] = "%s\\" % dirname(dirname(obj['Path']))
|
||||
else:
|
||||
obj['Path'] = "%s/" % obj['Path']
|
||||
obj['TopLevel'] = "%s/" % dirname(dirname(obj['Path']))
|
||||
obj['TopLevel'] = "plugin://plugin.video.jellyfin/%s/" % obj['LibraryId']
|
||||
|
||||
if not validate(obj['Path']):
|
||||
raise Exception("Failed to validate path. User stopped.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue