diff options
author | Erik Johnston <erik@matrix.org> | 2018-03-01 17:39:58 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-03-13 11:20:06 +0000 |
commit | d0fcc48f9dfc09531619faf23d407807eec46df9 (patch) | |
tree | cb4bbbcd90706da443937113f060bab4ed171b9b /synapse/handlers | |
parent | Merge pull request #2962 from matrix-org/rav/purge_history_txns (diff) | |
download | synapse-d0fcc48f9dfc09531619faf23d407807eec46df9.tar.xz |
extra_users is actually a list of UserIDs
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py index 42aab91c50..4f97c8db79 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py @@ -667,7 +667,7 @@ class EventCreationHandler(object): event (FrozenEvent) context (EventContext) ratelimit (bool) - extra_users (list(str)): Any extra users to notify about event + extra_users (list(UserID)): Any extra users to notify about event """ try: |