Merge branch 'account' into 'master'

fix: putting global account data works now

Closes #92

See merge request famedly/conduit!93
next
Timo Kösters 2021-05-29 09:14:47 +00:00
commit bff68e595b
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ pub async fn set_room_account_data_route(
) -> ConduitResult<set_room_account_data::Response> {
let sender_user = body.sender_user.as_ref().expect("user is authenticated");
let data = serde_json::from_str(body.data.get())
let data = serde_json::from_str::<serde_json::Value>(body.data.get())
.map_err(|_| Error::BadRequest(ErrorKind::BadJson, "Data is invalid."))?;
let event_type = body.event_type.to_string();