Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 1b8402f

Browse files
authored
Merge pull request #6042 from matrix-org/t3chguy/fix/17304
Update space order field validity requirements to match msc update
2 parents 01491f4 + a48d786 commit 1b8402f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stores/SpaceStore.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const getOrder = (order: string, creationTs: number, roomId: string): Arr
6262

6363
if (typeof order === "string" && Array.from(order).every((c: string) => {
6464
const charCode = c.charCodeAt(0);
65-
return charCode >= 0x20 && charCode <= 0x7F;
65+
return charCode >= 0x20 && charCode <= 0x7E;
6666
})) {
6767
validatedOrder = order;
6868
}

0 commit comments

Comments
 (0)