Skip to content

Commit

Permalink
src: websocket_manager: Remove unnecessary binary echo msg
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulTrombin authored and patrickelectric committed Feb 28, 2024
1 parent 5e89b4a commit 821d19d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/websocket_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ impl StreamHandler<Result<ws::Message, ws::ProtocolError>> for WebsocketActor {
};
ctx.text(text);
}
Ok(ws::Message::Binary(bin)) => ctx.binary(bin),
Ok(ws::Message::Close(msg)) => ctx.close(msg),
_ => (),
}
Expand Down

0 comments on commit 821d19d

Please sign in to comment.