mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
fixes
This commit is contained in:
parent
bd3d329c88
commit
1202508067
@ -114,8 +114,8 @@ class StreamChangeCache(object):
|
|||||||
assert type(stream_pos) is int
|
assert type(stream_pos) is int
|
||||||
|
|
||||||
if stream_pos >= self._earliest_known_stream_pos:
|
if stream_pos >= self._earliest_known_stream_pos:
|
||||||
return {self._cache[k] for k in self._cache.islice(
|
return [self._cache[k] for k in self._cache.islice(
|
||||||
start=self._cache.bisect_right(stream_pos))}
|
start=self._cache.bisect_right(stream_pos))]
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user