refactor: Resolve errors in admin/federation/commands.rs

This commit is contained in:
Ginger
2026-04-13 16:53:00 -04:00
parent 385b4b10d1
commit c64a4a71bc
+1 -1
View File
@@ -111,7 +111,7 @@ pub(super) async fn remote_user_in_rooms(&self, user_id: OwnedUserId) -> Result
.rooms
.state_cache
.rooms_joined(&user_id)
.then(|room_id| get_room_info(self.services, room_id))
.then(async |room_id| get_room_info(self.services, &room_id).await)
.collect()
.await;