mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2024-12-14 18:03:44 +01:00
Subsonic: Minor code style fix
This commit is contained in:
parent
9ac7518156
commit
2280a30ba9
@ -870,10 +870,12 @@ void SubsonicRequest::FinishCheck() {
|
||||
emit Results(SongList(), QString());
|
||||
}
|
||||
else {
|
||||
if (songs_.isEmpty() && errors_.isEmpty())
|
||||
if (songs_.isEmpty() && errors_.isEmpty()) {
|
||||
emit Results(songs_.values(), tr("Unknown error"));
|
||||
else
|
||||
}
|
||||
else {
|
||||
emit Results(songs_.values(), ErrorsToHTML(errors_));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user