Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
show heroes if a room has a 'deleted' name/canonical_alias (#3851)
Browse files Browse the repository at this point in the history
  • Loading branch information
ara4n authored Sep 12, 2018
1 parent fa0d464 commit 2ac1abb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/3851.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Show heroes if room name/canonical alias has been deleted
17 changes: 15 additions & 2 deletions synapse/handlers/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,8 +562,21 @@ def compute_summary(self, room_id, sync_config, batch, state, now_token):
details.get(Membership.INVITE, empty_ms).count
)

if name_id or canonical_alias_id:
defer.returnValue(summary)
# if the room has a name or canonical_alias set, we can skip
# calculating heroes. we assume that if the event has contents, it'll
# be a valid name or canonical_alias - i.e. we're checking that they
# haven't been "deleted" by blatting {} over the top.
if name_id:
name = yield self.store.get_event(name_id, allow_none=False)
if name and name.content:
defer.returnValue(summary)

if canonical_alias_id:
canonical_alias = yield self.store.get_event(
canonical_alias_id, allow_none=False,
)
if canonical_alias and canonical_alias.content:
defer.returnValue(summary)

joined_user_ids = [
r[0] for r in details.get(Membership.JOIN, empty_ms).members
Expand Down

0 comments on commit 2ac1abb

Please sign in to comment.