set version to 0.0.1

This commit is contained in:
woodser 2022-07-15 12:08:37 -04:00
parent 031f091f69
commit 20915ac15e
11 changed files with 13 additions and 13 deletions

View file

@ -267,7 +267,7 @@ public class RequestDataManager implements MessageListener, ConnectionListener,
if (networkEnvelope instanceof GetDataRequest) {
if (!stopped) {
GetDataRequest getDataRequest = (GetDataRequest) networkEnvelope;
if (getDataRequest.getVersion() == null || !Version.isNewVersion(getDataRequest.getVersion(), "1.5.0")) {
if (getDataRequest.getVersion() == null || !Version.isNewVersion(getDataRequest.getVersion(), "0.0.0")) {
connection.shutDown(CloseConnectionReason.MANDATORY_CAPABILITIES_NOT_SUPPORTED);
return;
}