diff options
author | Matthew <matthew@matrix.org> | 2017-01-06 23:28:46 +0000 |
---|---|---|
committer | Matthew <matthew@matrix.org> | 2017-01-06 23:28:46 +0000 |
commit | 8404f132c3fec8ca80184fe86302d653aac164ea (patch) | |
tree | a8f373ab4c7a955e15feaf9ace08dff45565bd48 | |
parent | fix typo breaking the fix to #1753 (diff) | |
download | synapse-8404f132c3fec8ca80184fe86302d653aac164ea.tar.xz |
Revert "fix typo breaking the fix to #1753"
This reverts commit b2850e62db376ea920fed9dff65a47c15cb0dc68.
-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 da9f3ad436..8c71aeb5e4 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, "send_on_behalf_of", None) + return getattr(self, "get_send_on_behalf_of", None) def _event_dict_property(key): |