diff options
Diffstat (limited to '')
-rw-r--r-- | src/SongPrint.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SongPrint.cxx b/src/SongPrint.cxx index b6b66e1f6..65d27ca77 100644 --- a/src/SongPrint.cxx +++ b/src/SongPrint.cxx @@ -69,6 +69,6 @@ song_print_info(Client *client, Song *song) if (song->mtime > 0) time_print(client, "Last-Modified", song->mtime); - if (song->tag) - tag_print(client, song->tag); + if (song->tag != nullptr) + tag_print(client, *song->tag); } |