From 6bc61c920dbcb3b9af28a41e8b53330c7e580f04 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Tue, 12 Nov 2019 00:11:26 +0000 Subject: [PATCH] start outgoing connection --- core/src/main/groovy/com/muwire/core/chat/ChatClient.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/groovy/com/muwire/core/chat/ChatClient.groovy b/core/src/main/groovy/com/muwire/core/chat/ChatClient.groovy index 3e7dd791..12225fc8 100644 --- a/core/src/main/groovy/com/muwire/core/chat/ChatClient.groovy +++ b/core/src/main/groovy/com/muwire/core/chat/ChatClient.groovy @@ -89,6 +89,7 @@ class ChatClient implements Closeable { throw new Exception("Unknown chat version $version") connection = new ChatConnection(eventBus, endpoint, host, false, trustService, settings) + connection.start() eventBus.publish(new ChatConnectionEvent(status : ChatConnectionAttemptStatus.SUCCESSFUL, persona : host, connection : connection)) } catch (Exception e) {