Browse Source

fix: don't do expensive operation on local /send

merge-requests/53/head
Timo Kösters 5 years ago
parent
commit
001d8dc257
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
  1. 2
      src/database/pusher.rs
  2. 7
      src/database/rooms.rs

2
src/database/pusher.rs

@ -218,7 +218,7 @@ pub fn get_actions<'a>( @@ -218,7 +218,7 @@ pub fn get_actions<'a>(
let ctx = PushConditionRoomCtx {
room_id: pdu.room_id.clone(),
member_count: (db.rooms.room_members(&pdu.room_id).count() as u32).into(),
member_count: 10_u32.into(), // TODO: get member count efficiently
user_display_name: db
.users
.displayname(&user)?

7
src/database/rooms.rs

@ -674,6 +674,7 @@ impl Rooms { @@ -674,6 +674,7 @@ impl Rooms {
.iter()
.filter_map(|r| r.ok())
.filter(|user_id| self.is_joined(&user_id, &pdu.room_id).unwrap_or(false))
.filter(|user_id| !db.users.is_deactivated(user_id).unwrap_or(false))
{
// Don't notify the user of their own events
if user == pdu.sender {
@ -706,15 +707,13 @@ impl Rooms { @@ -706,15 +707,13 @@ impl Rooms {
userroom_id.extend_from_slice(pdu.room_id.as_bytes());
if notify {
self
.userroomid_notificationcount
self.userroomid_notificationcount
.update_and_fetch(&userroom_id, utils::increment)?
.expect("utils::increment will always put in a value");
}
if highlight {
self
.userroomid_highlightcount
self.userroomid_highlightcount
.update_and_fetch(&userroom_id, utils::increment)?
.expect("utils::increment will always put in a value");
}

Loading…
Cancel
Save