diff --git a/src/models/room.ts b/src/models/room.ts index b3ed911945b..9e240e6f1e0 100644 --- a/src/models/room.ts +++ b/src/models/room.ts @@ -55,8 +55,8 @@ import { TypedEventEmitter } from "./typed-event-emitter"; // room versions which are considered okay for people to run without being asked // to upgrade (ie: "stable"). Eventually, we should remove these when all homeservers // return an m.room_versions capability. -const KNOWN_SAFE_ROOM_VERSION = '6'; -const SAFE_ROOM_VERSIONS = ['1', '2', '3', '4', '5', '6']; +const KNOWN_SAFE_ROOM_VERSION = '9'; +const SAFE_ROOM_VERSIONS = ['1', '2', '3', '4', '5', '6', '7', '8', '9']; function synthesizeReceipt(userId: string, event: MatrixEvent, receiptType: string): MatrixEvent { // console.log("synthesizing receipt for "+event.getId());