fix Playlist::SongInColumnsToString() which was broken since cbbabee0

This commit is contained in:
Andrzej Rybczak
2009-08-25 16:32:37 +02:00
parent 0e73a24bb9
commit 8787c19666

View File

@@ -460,8 +460,11 @@ std::string Playlist::SongInColumnsToString(const MPD::Song &s, void *)
} }
else else
{ {
result += "%"; // tags should be put in additional braces as if they are not, the
// tag that is not present within 'main' braces discards them all.
result += "{%";
result += it->type; result += it->type;
result += "}";
} }
result += " "; result += " ";
} }