From 014d2ef3c5cb46e3cdae73d626a612f66252dc26 Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 13 Dec 2019 18:19:48 -0500 Subject: [PATCH] Fix database entry for music videos --- jellyfin_kodi/objects/musicvideos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jellyfin_kodi/objects/musicvideos.py b/jellyfin_kodi/objects/musicvideos.py index a819e97b..fe24e6cc 100644 --- a/jellyfin_kodi/objects/musicvideos.py +++ b/jellyfin_kodi/objects/musicvideos.py @@ -163,7 +163,7 @@ class MusicVideos(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'],