diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-08-29 19:15:23 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-08-29 19:15:23 +0100 |
commit | a8e8d1d06c078de49711768357267cf4168999ea (patch) | |
tree | fa449b133e1780611f5de9c258c95a6cdf771492 /synapse/handlers/typing.py | |
parent | Have EventSource's get_new_events_for_user() API work only on keys within tha... (diff) | |
download | synapse-a8e8d1d06c078de49711768357267cf4168999ea.tar.xz |
Renamed get_current_token_part to get_current_key
Diffstat (limited to 'synapse/handlers/typing.py')
-rw-r--r-- | synapse/handlers/typing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/typing.py b/synapse/handlers/typing.py index 238b063483..3268427ecd 100644 --- a/synapse/handlers/typing.py +++ b/synapse/handlers/typing.py @@ -154,7 +154,7 @@ class TypingNotificationEventSource(object): def get_new_events_for_user(self, user, from_key, limit): return ([], from_key) - def get_current_token_part(self): + def get_current_key(self): return 0 def get_pagination_rows(self, user, pagination_config, key): |