diff options
| author | 2025-04-11 05:38:16 +0100 | |
|---|---|---|
| committer | 2025-04-11 05:38:16 +0100 | |
| commit | d4afee032d5b4e491e5873cab4ed78c80fafe164 (patch) | |
| tree | 4a2ce47e1e1f954c525881f2249f5f06190cd6bf /filamento/src/logic | |
| parent | aab4cd47b1d2da5539c50675be4c7a36898189ef (diff) | |
| download | luz-d4afee032d5b4e491e5873cab4ed78c80fafe164.tar.gz luz-d4afee032d5b4e491e5873cab4ed78c80fafe164.tar.bz2 luz-d4afee032d5b4e491e5873cab4ed78c80fafe164.zip | |
feat(filamento): `get_roster_with_users()` on client connect
Diffstat (limited to '')
| -rw-r--r-- | filamento/src/logic/connect.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/filamento/src/logic/connect.rs b/filamento/src/logic/connect.rs index 37cdad5..9d61ca4 100644 --- a/filamento/src/logic/connect.rs +++ b/filamento/src/logic/connect.rs @@ -19,7 +19,7 @@ pub async fn handle_connect<Fs: FileStore + Clone + Send + Sync>(      debug!("getting roster");      logic          .clone() -        .handle_online(Command::GetRoster(send), connection.clone()) +        .handle_online(Command::GetRosterWithUsers(send), connection.clone())          .await;      debug!("sent roster req");      let roster = recv.await; | 
