Fix `join_authorised_via_users_server` key name in `SendEvent`

This commit is contained in:
Neil Alexander 2022-05-24 10:22:26 +01:00
parent 7379b02b70
commit ead0112aa1
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ func SendEvent(
// via key if it is present, otherwise other servers won't be able to auth
// the event if the room is set to the "restricted" join rule.
if eventType == gomatrixserverlib.MRoomMember {
delete(r, "join_authorised_by_users_server")
delete(r, "join_authorised_via_users_server")
}
evTime, err := httputil.ParseTSParam(req)