song format: if tag type char doesn't match any of supported ones, display it

master
Andrzej Rybczak 17 years ago
parent 30758d0c44
commit e5691b446e
  1. 2
      src/song.cpp

@ -370,6 +370,8 @@ std::string MPD::Song::ParseFormat(std::string::const_iterator &it) const
get = &MPD::Song::GetTitle;
break;
default:
result += *it;
get = 0;
break;
}
if (get)

Loading…
Cancel
Save