Support clients supplying older tokens, fix short poll test

This commit is contained in:
Mark Haines 2015-10-30 16:38:35 +00:00
parent 79b65f3875
commit fb46937413
2 changed files with 3 additions and 3 deletions

View file

@ -112,7 +112,7 @@ class StreamToken(
def from_string(cls, string):
try:
keys = string.split(cls._SEPARATOR)
if len(keys) == len(cls._fields) - 1:
while len(keys) < len(cls._fields):
# i.e. old token from before receipt_key
keys.append("0")
return cls(*keys)