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
f75b9961
Commit
f75b9961
authored
6 years ago
by
Richard van der Hoff
Browse files
Options
Downloads
Patches
Plain Diff
Reinstate missing null check
parent
c1ae6b1b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/handlers/directory.py
+1
-1
1 addition, 1 deletion
synapse/handlers/directory.py
with
1 addition
and
1 deletion
synapse/handlers/directory.py
+
1
−
1
View file @
f75b9961
...
@@ -333,7 +333,7 @@ class DirectoryHandler(BaseHandler):
...
@@ -333,7 +333,7 @@ class DirectoryHandler(BaseHandler):
def
_user_can_delete_alias
(
self
,
alias
,
user_id
):
def
_user_can_delete_alias
(
self
,
alias
,
user_id
):
creator
=
yield
self
.
store
.
get_room_alias_creator
(
alias
.
to_string
())
creator
=
yield
self
.
store
.
get_room_alias_creator
(
alias
.
to_string
())
if
creator
==
user_id
:
if
creator
is
not
None
and
creator
==
user_id
:
defer
.
returnValue
(
True
)
defer
.
returnValue
(
True
)
is_admin
=
yield
self
.
auth
.
is_server_admin
(
UserID
.
from_string
(
user_id
))
is_admin
=
yield
self
.
auth
.
is_server_admin
(
UserID
.
from_string
(
user_id
))
...
...
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