Skip to content
Snippets Groups Projects
Commit a0097c6b authored by sapier's avatar sapier
Browse files

Fix uncought deserialization error on receiving data

parent f8522d50
No related branches found
No related tags found
No related merge requests found
......@@ -1173,6 +1173,11 @@ void Server::Receive()
"InvalidIncomingDataException: what()="
<<e.what()<<std::endl;
}
catch(SerializationError &e) {
infostream<<"Server::Receive(): "
"SerializationError: what()="
<<e.what()<<std::endl;
}
catch(con::PeerNotFoundException &e)
{
//NOTE: This is not needed anymore
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment