diff --git a/clients/native/src/websocket/handler.rs b/clients/native/src/websocket/handler.rs index fe23a518ab..8a1e369bb7 100644 --- a/clients/native/src/websocket/handler.rs +++ b/clients/native/src/websocket/handler.rs @@ -84,6 +84,9 @@ impl Handler { ) -> Option { // the ack control is now responsible for chunking, etc. let input_msg = InputMessage::new_fresh(recipient, message, with_reply_surb); + + // WIP(JON): here we should chunk the message, and send it to the sphinx_message_sender + self.msg_input.unbounded_send(input_msg).unwrap(); None