From bb2a7d8c41902447a6a1e582dc19456f2ca10238 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 18 Sep 2020 01:09:56 +0200 Subject: [PATCH] Fixed error typo --- src/dorkbox/network/handshake/ClientHandshake.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dorkbox/network/handshake/ClientHandshake.kt b/src/dorkbox/network/handshake/ClientHandshake.kt index d4d37caa..ec704ab3 100644 --- a/src/dorkbox/network/handshake/ClientHandshake.kt +++ b/src/dorkbox/network/handshake/ClientHandshake.kt @@ -74,7 +74,8 @@ internal class ClientHandshake(private val config: Confi if (this@ClientHandshake.sessionId != message.sessionId) { - failed = ClientException("[$message.sessionId] ignored message intended for another client (mine is: ${this@ClientHandshake.sessionId}") + failed = ClientException("[$message.sessionId] ignored message intended for another client (mine is: " + + "${this@ClientHandshake.sessionId})") return@FragmentAssembler }