diff --git a/faf-commons-lobby/src/main/kotlin/com/faforever/commons/lobby/FafLobbyClient.kt b/faf-commons-lobby/src/main/kotlin/com/faforever/commons/lobby/FafLobbyClient.kt index 917d6bd5..096c04d7 100644 --- a/faf-commons-lobby/src/main/kotlin/com/faforever/commons/lobby/FafLobbyClient.kt +++ b/faf-commons-lobby/src/main/kotlin/com/faforever/commons/lobby/FafLobbyClient.kt @@ -148,7 +148,7 @@ class FafLobbyClient( private fun openConnection(): Disposable { return webSocketClient - .uri(URI("wss", "", config.host, config.port, "", "", "")) + .uri(URI("ws", "", config.host, config.port, "", "", "")) .handle { inbound, outbound -> val inboundMono = inbound.receive() .asString(Charsets.UTF_8)