Correct filepath when entering data to database

This commit is contained in:
Matt 2019-12-12 21:32:53 -05:00
parent 2adad4250a
commit 60cc67eb15
2 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ class Movies(KodiDb):
obj['Path'] = obj['Path'].replace(obj['Filename'], "")
else:
obj['Path'] = "plugin://plugin.video.jellyfin/"
obj['Path'] = "plugin://plugin.video.jellyfin/%s/" % obj['LibraryId']
params = {
'filename': obj['Filename'].encode('utf-8'),
'id': obj['Id'],

View File

@ -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.")