mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Use str.join() properly
This commit is contained in:
parent
20d0db6cfb
commit
d4145abd33
@ -115,9 +115,8 @@ class StreamToken(
|
||||
raise SynapseError(400, "Invalid Token")
|
||||
|
||||
def to_string(self):
|
||||
return "".join([
|
||||
return self._SEPARATOR.join([
|
||||
str(self.events_key),
|
||||
self._SEPARATOR,
|
||||
str(self.presence_key),
|
||||
])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user