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

This commit is contained in:
Andrzej Rybczak
2009-09-09 23:47:55 +02:00
parent 30758d0c44
commit e5691b446e

View File

@@ -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)