diff options
author | Matthew Hodgson <matthew@arasphere.net> | 2018-07-23 10:16:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 10:16:05 +0100 |
commit | 354a99c9685096a76daea1881ee23aaba3ea9e96 (patch) | |
tree | dcfc00333a843cdc3a011249ef78f8438804dbd4 /synapse/notifier.py | |
parent | Make the rest of the .iterwhatever go away (#3562) (diff) | |
parent | Merge branch 'develop' into matthew/sync_deleted_devices (diff) | |
download | synapse-354a99c9685096a76daea1881ee23aaba3ea9e96.tar.xz |
Merge pull request #3520 from matrix-org/matthew/sync_deleted_devices
Announce deleted devices explicitly over federation.
Diffstat (limited to 'synapse/notifier.py')
-rw-r--r-- | synapse/notifier.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/notifier.py b/synapse/notifier.py index 51cbd66f06..e650c3e494 100644 --- a/synapse/notifier.py +++ b/synapse/notifier.py @@ -274,7 +274,7 @@ class Notifier(object): logger.exception("Error notifying application services of event") def on_new_event(self, stream_key, new_token, users=[], rooms=[]): - """ Used to inform listeners that something has happend event wise. + """ Used to inform listeners that something has happened event wise. Will wake up all listeners for the given users and rooms. """ |