Fixed a bug where the set_volume remote API request was not returning

a response.
This commit is contained in:
casey langen 2018-04-12 00:45:37 -07:00
parent 00e62a1adb
commit 43101fe6d8

View File

@ -598,6 +598,8 @@ void WebSocketServer::RespondWithSetVolume(connection_hdl connection, json& requ
else {
context.playback->SetVolume(options[key::volume]);
}
this->RespondWithSuccess(connection, request);
}
void WebSocketServer::RespondWithPlaybackOverview(connection_hdl connection, json& request) {