From 98aed25825014fb460739200d4cdd26a469db211 Mon Sep 17 00:00:00 2001 From: Moritz Venn Date: Fri, 5 Aug 2011 22:02:13 +0200 Subject: [PATCH] webif/MP: fix loading playlists --- webinterface/src/WebComponents/Sources/MP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webinterface/src/WebComponents/Sources/MP.py b/webinterface/src/WebComponents/Sources/MP.py index 298976d3..4b81f322 100644 --- a/webinterface/src/WebComponents/Sources/MP.py +++ b/webinterface/src/WebComponents/Sources/MP.py @@ -177,7 +177,7 @@ class MP(Source): return (False, "Mediaplayer not installed") fullPath = resolveFilename(SCOPE_CONFIG, filename) - mp.PlaylistSelected(fullPath) + mp.PlaylistSelected((filename, fullPath)) return (True, "Playlist loaded from '%s'" % fullPath) def writePlaylist(self, param): -- 2.20.1