diff options
author | Matthew <matthew@matrix.org> | 2017-01-06 23:22:44 +0000 |
---|---|---|
committer | Matthew <matthew@matrix.org> | 2017-01-06 23:23:37 +0000 |
commit | b2850e62db376ea920fed9dff65a47c15cb0dc68 (patch) | |
tree | 99a3bb85ab00773ad2358708779cfb87e7629886 /synapse | |
parent | Bump version and changelog (diff) | |
download | synapse-b2850e62db376ea920fed9dff65a47c15cb0dc68.tar.xz |
fix typo breaking the fix to #1753
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/events/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/events/__init__.py b/synapse/events/__init__.py index 8c71aeb5e4..da9f3ad436 100644 --- a/synapse/events/__init__.py +++ b/synapse/events/__init__.py @@ -43,7 +43,7 @@ class _EventInternalMetadata(object): returns a str with the name of the server this event is sent on behalf of. """ - return getattr(self, "get_send_on_behalf_of", None) + return getattr(self, "send_on_behalf_of", None) def _event_dict_property(key): |