dont build with zlib in the nix flake

Signed-off-by: June Clementine Strawberry <june@3.dog>
This commit is contained in:
June Clementine Strawberry 2025-03-06 13:08:01 -05:00
parent ecea0cff69
commit c92678ecbe
No known key found for this signature in database
5 changed files with 12 additions and 8 deletions

View file

@ -379,8 +379,8 @@ impl Service {
.active_local_users_in_room(&pdu.room_id)
.map(ToOwned::to_owned)
// Don't notify the sender of their own events, and dont send from ignored users
.ready_filter(|user| user != &pdu.sender)
.filter_map(|recipient_user| async move { (!self.services.users.user_is_ignored(&pdu.sender, recipient_user).await).then_some(recipient_user) })
.ready_filter(|user| *user != pdu.sender)
.filter_map(|recipient_user| async move { (!self.services.users.user_is_ignored(&pdu.sender, &recipient_user).await).then_some(recipient_user) })
.collect()
.await;