Remove unenforced size limit on room names (#3669)

Fixes #3641

The spec says the name field in m.room.name events must not exceed 255 bytes but no servers actually enforce this over the C-S API. Clients should probably already be truncating room names to an appropriate length for their user interface.

Signed-off-by: Aaron Raimist <aaron@raim.ist>
travis/msc/soft-logout-flows
Aaron Raimist 2 years ago committed by GitHub
parent d7d52e8074
commit 2e63733beb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1 @@
Remove unenforced size limit on the `name` field of `m.room.name` events.

@ -17,7 +17,7 @@ properties:
content:
properties:
name:
description: The name of the room. This MUST NOT exceed 255 bytes.
description: The name of the room.
type: string
required:
- name

Loading…
Cancel
Save