diff options
Diffstat (limited to 'src/song_print.c')
-rw-r--r-- | src/song_print.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/song_print.c b/src/song_print.c index 11b241fbc..16239e03b 100644 --- a/src/song_print.c +++ b/src/song_print.c @@ -25,6 +25,7 @@ #include "tag_print.h" #include "client.h" #include "uri.h" +#include "mapper.h" void song_print_uri(struct client *client, struct song *song) @@ -40,7 +41,8 @@ song_print_uri(struct client *client, struct song *song) if (uri == NULL) uri = song->uri; - client_printf(client, "%s%s\n", SONG_FILE, uri); + client_printf(client, "%s%s\n", SONG_FILE, + map_to_relative_path(uri)); g_free(allocated); } |