Fixed connection system auth query

This commit is contained in:
Rsl1122 2019-02-18 17:59:02 +02:00
parent 8f3f2e9127
commit e1bef920e7

View File

@ -61,7 +61,7 @@ public class ConnectionIn {
UUID serverUUID = getServerUUID();
try {
if (!database.query(ServerQueries.fetchServerMatchingIdentifier(serverUUID)).isPresent()) {
if (database.query(ServerQueries.fetchServerMatchingIdentifier(serverUUID)).isPresent()) {
return;
}
} catch (DBOpException e) {