mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:06:08 -04:00
Merge pull request #759 from matrix-org/dbkr/email_notifs
Send email notifications for missed messages
This commit is contained in:
commit
fe97b81c09
31 changed files with 1470 additions and 34 deletions
|
@ -697,7 +697,7 @@ class SyncHandler(BaseHandler):
|
|||
|
||||
if recents is not None:
|
||||
recents = sync_config.filter_collection.filter_room_timeline(recents)
|
||||
recents = yield self._filter_events_for_client(
|
||||
recents = yield self.filter_events_for_client(
|
||||
sync_config.user.to_string(),
|
||||
recents,
|
||||
)
|
||||
|
@ -718,7 +718,7 @@ class SyncHandler(BaseHandler):
|
|||
loaded_recents = sync_config.filter_collection.filter_room_timeline(
|
||||
events
|
||||
)
|
||||
loaded_recents = yield self._filter_events_for_client(
|
||||
loaded_recents = yield self.filter_events_for_client(
|
||||
sync_config.user.to_string(),
|
||||
loaded_recents,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue