1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/typing.py b/synapse/handlers/typing.py
index 8a1e3dc5e8..ecb9318d1c 100644
--- a/synapse/handlers/typing.py
+++ b/synapse/handlers/typing.py
@@ -152,10 +152,10 @@ class TypingNotificationEventSource(object):
self.hs = hs
def get_new_events_for_user(self, user, from_token, limit):
- return ([], 0)
+ return ([], from_token)
def get_current_token_part(self):
return 0
def get_pagination_rows(self, user, pagination_config, key):
- return ([], 0)
+ return ([], pagination_config.from_token)
|