[Xfce4-commits] <parole:master> Fix loading of playlists with relative paths (Fixes #10436) Thanks to Alexander De Sousa for the patch

Simon Steinbeiss noreply at xfce.org
Mon Oct 28 09:26:01 CET 2013


Updating branch refs/heads/master
         to 2983de5d5e8c527e3da9659046881c5e8b0c567e (commit)
       from ea4f998a2d35fb37b50a1682917ad8c19b1212cf (commit)

commit 2983de5d5e8c527e3da9659046881c5e8b0c567e
Author: Simon Steinbeiss <simon.steinbeiss at elfenbeinturm.at>
Date:   Mon Oct 28 09:24:58 2013 +0100

    Fix loading of playlists with relative paths (Fixes #10436)
    Thanks to Alexander De Sousa for the patch

 src/misc/parole-pl-parser.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/misc/parole-pl-parser.c b/src/misc/parole-pl-parser.c
index 5de12e2..57c495b 100644
--- a/src/misc/parole-pl-parser.c
+++ b/src/misc/parole-pl-parser.c
@@ -375,7 +375,7 @@ parole_pl_parser_parse_m3u (const gchar *filename)
         }
 
         else {
-            pl_filename = g_strjoin("", path, lines[i], NULL);
+            pl_filename = g_strjoin("/", path, lines[i], NULL);
         }
         
         list = g_slist_append (list, parole_file_new (pl_filename));


More information about the Xfce4-commits mailing list