Updating branch refs/heads/0.5
         to 74815a4b1e1cce4a81b0d29ec9c7e8eac4682b6e (commit)
       from 9e27aa0ba60d02f98609abcaa722260f927fae72 (commit)

commit 74815a4b1e1cce4a81b0d29ec9c7e8eac4682b6e
Author: Simon Steinbeiss <[email protected]>
Date:   Mon Oct 28 11:23:47 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 9f9e98a..71951d7 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));
_______________________________________________
Xfce4-commits mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to