mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-28 23:20:09 +03:00
Don't go round in circles
This commit is contained in:
parent
eeb2f9e546
commit
42137efde7
1 changed files with 2 additions and 4 deletions
|
@ -66,8 +66,8 @@ class UserDirectoyHandler(object):
|
|||
|
||||
yield self._handle_deltas(deltas)
|
||||
|
||||
max_stream_id = deltas[-1]["stream_id"]
|
||||
yield self.store.update_user_directory_stream_pos(max_stream_id)
|
||||
self.pos = deltas[-1]["stream_id"]
|
||||
yield self.store.update_user_directory_stream_pos(self.pos)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def _handle_room(self, room_id):
|
||||
|
@ -208,8 +208,6 @@ class UserDirectoyHandler(object):
|
|||
if event:
|
||||
hist_vis = event.content.get(key_name, None)
|
||||
|
||||
logger.info("prev: %r, new: %r", prev_hist_vis, hist_vis)
|
||||
|
||||
if hist_vis == public_value and prev_hist_vis != public_value:
|
||||
defer.returnValue(True)
|
||||
elif hist_vis != public_value and prev_hist_vis == public_value:
|
||||
|
|
Loading…
Reference in a new issue