| 634 | } |
| 635 | |
| 636 | void WebSocketServer::RespondWithPlaybackOverview(connection_hdl connection, json& request) { |
| 637 | json options; |
| 638 | this->BuildPlaybackOverview(options); |
| 639 | this->RespondWithOptions(connection, request, options); |
| 640 | } |
| 641 | |
| 642 | bool WebSocketServer::RespondWithTracks( |
| 643 | connection_hdl connection, |
nothing calls this directly
no test coverage detected