mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-20 10:55:09 +03:00
Ignore typing stream for now
This commit is contained in:
parent
a2dc84fc90
commit
7bd1575ddf
1 changed files with 6 additions and 0 deletions
|
@ -1040,6 +1040,12 @@ class StreamToken:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
for _, key in StreamKeyType.__members__.items():
|
for _, key in StreamKeyType.__members__.items():
|
||||||
|
if key == StreamKeyType.TYPING:
|
||||||
|
# Typing stream is allowed to "reset", and so comparisons don't
|
||||||
|
# really make sense as is.
|
||||||
|
# TODO: Figure out a better way of tracking resets.
|
||||||
|
continue
|
||||||
|
|
||||||
self_value = self.get_field(key)
|
self_value = self.get_field(key)
|
||||||
other_value = other_token.get_field(key)
|
other_value = other_token.get_field(key)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue