Skip to content

Commit 261ebd0

Browse files
Fixed message endpoint for EncryptionKeyRequest
1 parent 7146e04 commit 261ebd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/developerfromjokela/edison/web/rpc/requests/EncryptionKeyRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ public void respond(CommunicationServer server, WebSocket webSocket) {
4444
}
4545

4646
ClientDetails details = webClientSocket.getAttachment();
47-
webClientSocket.send(new PublicKeyResponse(details.getPublicKey()).toString());
47+
webSocket.send(new PublicKeyResponse(details.getPublicKey()).toString());
4848
}
4949
}

0 commit comments

Comments
 (0)