[WIP] Client connections

This commit is contained in:
Alex Emmet 2026-02-15 12:15:37 +01:00
commit 84bdcab0d1
4 changed files with 7 additions and 7 deletions

View file

@ -349,7 +349,7 @@ impl OmegaConnection {
match msg {
Some(Ok(Message::Text(msg))) => {
let cv = CommunicationValue::from_json(&msg);
if cv.is_type(CommunicationType::pong) {
if cv.is_type(CommunicationType::pong) || cv.is_type(CommunicationType::ping) {
self.handle_pong(&cv, true).await;
continue;
}