Hi,
it's a bug that is already fixed in development branch (will be released as 2.0-M1 soon). In the meantime you can patch server code manually if you are building it from source:
In file src/server/core/node.cpp find line
(should be around line 5329). Immediately after that line add the following code:
Best regards,
Victor
it's a bug that is already fixed in development branch (will be released as 2.0-M1 soon). In the meantime you can patch server code manually if you are building it from source:
In file src/server/core/node.cpp find line
Code Select
Node *peerNode = (Node *)FindObjectById(iface->getPeerNodeId(), OBJECT_NODE);
(should be around line 5329). Immediately after that line add the following code:
Code Select
if (peerNode == NULL)
{
iface->clearPeer();
continue;
}
Best regards,
Victor