Added ACCEPTED response to registration in accept all mode.
This commit is contained in:
parent
d34a407284
commit
fe4bda42fa
|
@ -50,6 +50,7 @@ public class ClientManager {
|
||||||
if (userDoc != null) throw new InvalidIdentificationException("Username is taken.");
|
if (userDoc != null) throw new InvalidIdentificationException("Username is taken.");
|
||||||
if (this.server.getConfig().isAcceptAllNewClients()) {
|
if (this.server.getConfig().isAcceptAllNewClients()) {
|
||||||
var clientData = this.authService.registerNewClient(registration);
|
var clientData = this.authService.registerNewClient(registration);
|
||||||
|
clientThread.sendToClient(new RegistrationStatus(RegistrationStatus.Type.ACCEPTED));
|
||||||
this.initializeClientConnection(clientData, clientThread);
|
this.initializeClientConnection(clientData, clientThread);
|
||||||
} else {
|
} else {
|
||||||
var clientId = this.authService.registerPendingClient(registration);
|
var clientId = this.authService.registerPendingClient(registration);
|
||||||
|
|
Loading…
Reference in New Issue