dont build with zlib in the nix flake
Signed-off-by: June Clementine Strawberry <june@3.dog>
This commit is contained in:
parent
ecea0cff69
commit
c92678ecbe
5 changed files with 12 additions and 8 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue