Skip to content
Snippets Groups Projects
Commit 6797c7f1 authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

TypingNotificationEventSource has to return proper tokens, not int 0

parent 4bfdec1e
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment