fixed Issue #28 by checking if username contains space before starting connection

This commit is contained in:
Andrin Fassbind 2022-04-14 19:33:18 +02:00
parent b47d98b960
commit b6fd5b569d
1 changed files with 14 additions and 10 deletions

View File

@ -106,6 +106,7 @@ public class ChatWindowController {
private void startConnectionHandler() throws IOException {
String userName = userNameField.getText();
if(!userName.contains(" ")) {
String serverAddress = serverAddressField.getText();
int serverPort = Integer.parseInt(serverPortField.getText());
connectionHandler = new ClientConnectionHandler(
@ -118,6 +119,9 @@ public class ChatWindowController {
// register window close handler
rootPane.getScene().getWindow().addEventHandler(WindowEvent.WINDOW_CLOSE_REQUEST, windowCloseHandler);
} else {
addError("It is not allowed to have spaces in username!");
}
}
private void terminateConnectionHandler() {