Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
7f025eb4
Unverified
Commit
7f025eb4
authored
5 years ago
by
Katie Wolfe
Browse files
Options
Downloads
Patches
Plain Diff
Show heroes if room name or canonical alias are empty
Fixes #4194 Signed-off-by:
Katie Wolfe
<
katie@dnaf.moe
>
parent
1a63c7c2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/handlers/sync.py
+3
-5
3 additions, 5 deletions
synapse/handlers/sync.py
with
3 additions
and
5 deletions
synapse/handlers/sync.py
+
3
−
5
View file @
7f025eb4
...
@@ -583,19 +583,17 @@ class SyncHandler(object):
...
@@ -583,19 +583,17 @@ class SyncHandler(object):
)
)
# if the room has a name or canonical_alias set, we can skip
# 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
# calculating heroes.
# 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
:
if
name_id
:
name
=
yield
self
.
store
.
get_event
(
name_id
,
allow_none
=
True
)
name
=
yield
self
.
store
.
get_event
(
name_id
,
allow_none
=
True
)
if
name
and
name
.
content
:
if
name
and
name
.
content
and
name
.
content
.
name
:
defer
.
returnValue
(
summary
)
defer
.
returnValue
(
summary
)
if
canonical_alias_id
:
if
canonical_alias_id
:
canonical_alias
=
yield
self
.
store
.
get_event
(
canonical_alias
=
yield
self
.
store
.
get_event
(
canonical_alias_id
,
allow_none
=
True
,
canonical_alias_id
,
allow_none
=
True
,
)
)
if
canonical_alias
and
canonical_alias
.
content
:
if
canonical_alias
and
canonical_alias
.
content
and
canonical_alias
.
content
.
alias
:
defer
.
returnValue
(
summary
)
defer
.
returnValue
(
summary
)
joined_user_ids
=
[
joined_user_ids
=
[
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment