summary refs log tree commit diff
path: root/synapse/push/mailer.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2016-10-18 15:27:10 +0100
committerGitHub <noreply@github.com>2016-10-18 15:27:10 +0100
commitf6955db970ec4846639b05ee9e49eef016da77db (patch)
tree86f50a1960352e2b46c4ea645ab5f56f7a5ce0eb /synapse/push/mailer.py
parentMerge branch 'release-v0.18.2' of github.com:matrix-org/synapse into develop (diff)
parentFix push notifications for a single unread message (diff)
downloadsynapse-f6955db970ec4846639b05ee9e49eef016da77db.tar.xz
Merge pull request #1174 from matrix-org/erikj/email_push_noop
Reduce redundant database work in email pusher
Diffstat (limited to 'synapse/push/mailer.py')
-rw-r--r--synapse/push/mailer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py
index 3b63c19eca..53551632b6 100644
--- a/synapse/push/mailer.py
+++ b/synapse/push/mailer.py
@@ -372,7 +372,7 @@ class Mailer(object):
                     state_event_id = room_state_ids[room_id][
                         ("m.room.member", event.sender)
                     ]
-                    state_event = yield self.get_event(state_event_id)
+                    state_event = yield self.store.get_event(state_event_id)
                     sender_name = name_from_member_event(state_event)
 
                 if sender_name is not None and room_name is not None: