fix: the chat scrolling and chat rendering (#282)

* fix: the chat scrolling and chat rendering

* docs: update release notes
This commit is contained in:
BiggerRain
2025-03-12 16:50:35 +08:00
committed by GitHub
parent 04ff358dc7
commit d319f5ebc7
9 changed files with 53 additions and 44 deletions

View File

@@ -589,6 +589,7 @@ fn test_trim_endpoint_last_forward_slash() {
version: Version {
number: "".to_string(),
},
minimal_client_version: None,
updated: "".to_string(),
public: false,
available: false,

View File

@@ -128,7 +128,7 @@ pub async fn connect_to_server(
msg = ws.next() => {
match msg {
Some(Ok(Message::Text(text))) => {
println!("Received message: {}", text);
//println!("Received message: {}", text);
let _ = app_handle_clone.emit("ws-message", text);
},
Some(Err(WsError::ConnectionClosed)) => {