Add stations with no good genres to "other".
This commit is contained in:
parent
a7599a1fef
commit
b6d424bc04
|
@ -100,6 +100,10 @@ QStringList FilterGenres(const QStringList& genres) {
|
|||
ret << genre;
|
||||
}
|
||||
}
|
||||
|
||||
if (ret.empty()) {
|
||||
ret << "other";
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue