forked from MirrorHub/synapse
notifications: Convert next_token to string according to the spec
Currently the parameter is serialized as an integer. Signed-off-by: Konstantinos Sideris <sideris.konstantin@gmail.com>
This commit is contained in:
parent
966686c845
commit
88868b2839
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue