From 77c572c49a9b7ba1ba28d509cc5ec6cf628b5943 Mon Sep 17 00:00:00 2001 From: nex Date: Fri, 29 Aug 2025 16:31:22 +0000 Subject: [PATCH] style(PR596): Fix misleading wording & typo --- src/admin/user/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin/user/commands.rs b/src/admin/user/commands.rs index 37ab030c..f6689a38 100644 --- a/src/admin/user/commands.rs +++ b/src/admin/user/commands.rs @@ -949,6 +949,6 @@ pub(super) async fn force_leave_remote_room( .boxed() .await?; - self.write_str(&format!("{user_id} has been joined to {room_id}.",)) + self.write_str(&format!("{user_id} has been removed from {room_id} via a remote server.",)) .await }