mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 10:56:06 -04:00
Fix users claimed non-exclusively by an app service don't get notifications #2211
This commit is contained in:
parent
c1935f0a41
commit
328378f9cb
2 changed files with 6 additions and 3 deletions
|
@ -163,7 +163,7 @@ class PushRuleStore(SQLBaseStore):
|
|||
local_users_in_room = set(
|
||||
u for u in users_in_room
|
||||
if self.hs.is_mine_id(u)
|
||||
and not self.get_if_app_services_interested_in_user(u)
|
||||
and not self.get_if_app_services_interested_in_user(u, exclusive=True)
|
||||
)
|
||||
|
||||
# users in the room who have pushers need to get push rules run because
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue