Remove Platform.localhostname because it is not supported in web app.

This commit is contained in:
Marco 2022-12-18 16:11:00 +01:00
parent 6580518105
commit 9128bb1cbb

View File

@ -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;