diff options
author | David Baker <dave@matrix.org> | 2016-05-10 18:51:14 +0200 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-05-10 18:51:14 +0200 |
commit | 0c4ccdcb83308396670b896d7b9f6c40c1e94660 (patch) | |
tree | 14054eb7431c6ae1251bb83fdc28a44392a2dd88 /synapse/app/pusher.py | |
parent | Uncommit accidentally commited edit to cipher list (diff) | |
download | synapse-0c4ccdcb83308396670b896d7b9f6c40c1e94660.tar.xz |
Also pass through get_profile_displayname
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r-- | synapse/app/pusher.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py index 89c8d5c7ce..9fec6869fd 100644 --- a/synapse/app/pusher.py +++ b/synapse/app/pusher.py @@ -123,6 +123,10 @@ class PusherSlaveStore( DataStore.get_time_of_last_push_action_before.__func__ ) + get_profile_displayname = ( + DataStore.get_profile_displayname.__func__ + ) + class PusherServer(HomeServer): |