Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/ur/dashboard_client_implementation_g5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,7 @@ std::string DashboardClientImplG5::read()
{
if (!TCPSocket::read((uint8_t*)&character, 1, read_chars))
{
disconnect();
throw TimeoutException("Did not receive answer from dashboard server in time. Disconnecting from dashboard "
"server.",
*recv_timeout_);
throw TimeoutException("Did not receive answer from dashboard server in time.", *recv_timeout_);
}
result << character;
if (character == '\n')
Expand Down
Loading