mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-28 23:20:09 +03:00
Fix returned token is no longer a tuple
This commit is contained in:
parent
7ce98804ff
commit
fcf55f2255
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ class InitialSyncHandler(BaseHandler):
|
|||
self.store, user_id, messages, is_peeking=is_peeking,
|
||||
)
|
||||
|
||||
start_token = now_token.copy_and_replace("room_key", token[0])
|
||||
start_token = now_token.copy_and_replace("room_key", token)
|
||||
end_token = now_token
|
||||
|
||||
time_now = self.clock.time_msec()
|
||||
|
|
Loading…
Reference in a new issue