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

master
Andrzej Rybczak 17 years ago
parent 0e73a24bb9
commit 8787c19666
  1. 5
      src/playlist.cpp

@ -460,8 +460,11 @@ std::string Playlist::SongInColumnsToString(const MPD::Song &s, void *)
}
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 += "}";
}
result += " ";
}

Loading…
Cancel
Save