diff --git a/lib/connection/ws_connection.dart b/lib/connection/ws_connection.dart index 4ea66dd..0e3d701 100644 --- a/lib/connection/ws_connection.dart +++ b/lib/connection/ws_connection.dart @@ -34,13 +34,10 @@ class ServerConnection { void connect() { if (wasConnected) channel.sink.close(); - if (Platform.localHostname == 'mbook') { - // My test environment - channel = WebSocketChannel.connect(Uri.parse('ws://localhost:8080')); - } else { - channel = - WebSocketChannel.connect(Uri.parse('wss://chess.sw-gross.de:8080')); - } + + channel = + WebSocketChannel.connect(Uri.parse('wss://chess.sw-gross.de:8080')); + log(channel.closeCode.toString()); wasConnected = true;