mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Fix missing extension for playlists
This commit is contained in:
parent
ef00029ed0
commit
b1035f8e69
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ class Playlist(object):
|
|||
xsp_path = os.path.join(path, "Emby %s - %s.xsp" % (view_id, media_type))
|
||||
else:
|
||||
playlist_name = tag
|
||||
xsp_path = os.path.join(path, "Emby %s" % view_id)
|
||||
xsp_path = os.path.join(path, "Emby %s.xsp" % view_id)
|
||||
|
||||
# Only add the playlist if it doesn't exist
|
||||
if xbmcvfs.exists(xsp_path):
|
||||
|
|
Loading…
Reference in a new issue