You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
/unban is broken on clients that use /rooms/{roomId}/state/leave to unban users instead of /rooms/{roomId}/unban. The user will receive the following error:
The cause is this line: when using the old/alternative method of unbanning users, action will be "leave" instead of "unban".
However, fixing this without also updating the client(s) will result in the return of element-hq/element-web#1961, which is likely fixed at the moment. This is because the server will be unable to differentiate between /kick and /unban. matrix-js-sdk will need to be updated to use what I assume is the "new" API call.
The text was updated successfully, but these errors were encountered:
Moved from matrix-org/matrix-js-sdk#341
/unban is broken on clients that use
/rooms/{roomId}/state/leave
to unban users instead of/rooms/{roomId}/unban
. The user will receive the following error:synapse/synapse/handlers/room_member.py
Line 228 in f0e4bac
The cause is this line: when using the old/alternative method of unbanning users,
action
will be"leave"
instead of"unban"
.However, fixing this without also updating the client(s) will result in the return of element-hq/element-web#1961, which is likely fixed at the moment. This is because the server will be unable to differentiate between /kick and /unban. matrix-js-sdk will need to be updated to use what I assume is the "new" API call.
The text was updated successfully, but these errors were encountered: