diff options
Diffstat (limited to '')
-rw-r--r-- | src/song_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/song_print.c b/src/song_print.c index 879cf48ea..235142b37 100644 --- a/src/song_print.c +++ b/src/song_print.c @@ -26,7 +26,7 @@ void song_print_url(struct client *client, struct song *song) { - if (song->parent && song->parent->path) { + if (song->parent && !isRootDirectory(song->parent->path)) { client_printf(client, "%s%s/%s\n", SONG_FILE, directory_get_path(song->parent), song->url); } else { |