Merge pull request #3190 from mujx/notif-token-fix

notifications: Convert next_token to string according to the spec
pull/2337/head
Richard van der Hoff 2018-05-08 13:54:47 +01:00 committed by GitHub
commit 678e649b78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class NotificationsServlet(RestServlet):
pa["topological_ordering"], pa["stream_ordering"]
)
returned_push_actions.append(returned_pa)
next_token = pa["stream_ordering"]
next_token = str(pa["stream_ordering"])
defer.returnValue((200, {
"notifications": returned_push_actions,