From c35f8c55acf117eaebbbbf696ad213ce3a39710b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Fri, 31 Dec 2021 02:16:20 +0100 Subject: [PATCH] fix(sdk): Fix docs of Common::active_members_no_sync --- crates/matrix-sdk/src/room/common.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/matrix-sdk/src/room/common.rs b/crates/matrix-sdk/src/room/common.rs index fdf8581d1..227ccfa2b 100644 --- a/crates/matrix-sdk/src/room/common.rs +++ b/crates/matrix-sdk/src/room/common.rs @@ -281,9 +281,9 @@ impl Common { /// Get active members for this room, includes invited, joined members. /// - /// *Note*: This method will fetch the members from the homeserver if the - /// member list isn't synchronized due to member lazy loading. Because of - /// that, it might panic if it isn't run on a tokio thread. + /// *Note*: This method will not fetch the members from the homeserver if + /// the member list isn't synchronized due to member lazy loading. Thus, + /// members could be missing from the list. /// /// Use [active_members()](#method.active_members) if you want to ensure to /// always get the full member list.