mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-14 22:11:47 +01:00
lint
This commit is contained in:
parent
fb078f921b
commit
ce460dc31c
1 changed files with 2 additions and 4 deletions
|
@ -161,8 +161,7 @@ class BaseProfileHandler(BaseHandler):
|
|||
profile = yield self.store.get_profileinfo(target_user.localpart)
|
||||
if profile.display_name:
|
||||
raise SynapseError(
|
||||
400,
|
||||
"Changing displayname is disabled on this server"
|
||||
400, "Changing displayname is disabled on this server"
|
||||
)
|
||||
|
||||
if len(new_displayname) > MAX_DISPLAYNAME_LEN:
|
||||
|
@ -230,8 +229,7 @@ class BaseProfileHandler(BaseHandler):
|
|||
profile = yield self.store.get_profileinfo(target_user.localpart)
|
||||
if profile.avatar_url:
|
||||
raise SynapseError(
|
||||
400,
|
||||
"Changing avatar url is disabled on this server"
|
||||
400, "Changing avatar url is disabled on this server"
|
||||
)
|
||||
|
||||
if len(new_avatar_url) > MAX_AVATAR_URL_LEN:
|
||||
|
|
Loading…
Reference in a new issue