summaryrefslogtreecommitdiff
path: root/server/editor/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/editor/src/main.rs')
-rw-r--r--server/editor/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/editor/src/main.rs b/server/editor/src/main.rs
index 620daeb5..c7cb7933 100644
--- a/server/editor/src/main.rs
+++ b/server/editor/src/main.rs
@@ -168,7 +168,7 @@ async fn handle_conn(
debug!("-> {p:?}");
write
.send(tokio_tungstenite::tungstenite::Message::Text(
- serde_json::to_string(&p).unwrap(),
+ serde_json::to_string(&p).unwrap().into(),
))
.await?;
}