mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-20 04:01:34 -05:00
Fix token to correct format
This commit is contained in:
parent
e2b861cc67
commit
ae493c9418
@ -265,7 +265,7 @@ class StreamStore(SQLBaseStore):
|
||||
if rows:
|
||||
topo = rows[0]["topological_ordering"]
|
||||
toke = rows[0]["stream_ordering"]
|
||||
start_token = "p%s-%s" % (topo, toke)
|
||||
start_token = "t%s-%s" % (topo, toke)
|
||||
|
||||
token = (start_token, end_token)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user