Add stations with no good genres to "other".

This commit is contained in:
John Maguire 2010-11-22 20:49:09 +00:00
parent a7599a1fef
commit b6d424bc04
1 changed files with 4 additions and 0 deletions

View File

@ -100,6 +100,10 @@ QStringList FilterGenres(const QStringList& genres) {
ret << genre;
}
}
if (ret.empty()) {
ret << "other";
}
return ret;
}