Read the right username field when performing account deactivation (#1954)

`Login` has 2 username fields, and we were always checking the
deprecated one. Instead, check both.
main
kegsay 2021-08-02 13:11:23 +01:00 committed by GitHub
parent ed4097825b
commit a22ab3eee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ func Deactivate(
return *errRes
}
localpart, _, err := gomatrixserverlib.SplitID('@', login.User)
localpart, _, err := gomatrixserverlib.SplitID('@', login.Username())
if err != nil {
util.GetLogger(req.Context()).WithError(err).Error("gomatrixserverlib.SplitID failed")
return jsonerror.InternalServerError()