Enable room version 4

This commit is contained in:
Nyaaori 2021-11-01 02:22:32 +00:00 committed by Timo Kösters
parent 714873694d
commit d8a3b257f2
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4
4 changed files with 6 additions and 9 deletions

View file

@ -2592,9 +2592,9 @@ pub async fn create_join_event_template_route(
acl_check(sender_servername, &body.room_id, &db)?;
// TODO: Conduit does not implement restricted join rules yet, we always reject
let join_rules_event = db
.rooms
.room_state_get(&body.room_id, &StateEventType::RoomJoinRules, "")?;
let join_rules_event =
db.rooms
.room_state_get(&body.room_id, &StateEventType::RoomJoinRules, "")?;
let join_rules_event_content: Option<RoomJoinRulesEventContent> = join_rules_event
.as_ref()