fix: correct create event warnings
This commit is contained in:
parent
33481ec062
commit
667ffb4239
3 changed files with 20 additions and 5 deletions
|
@ -1776,7 +1776,10 @@ impl Rooms {
|
|||
serde_json::from_value::<Raw<CreateEventContent>>(create_event.content.clone())
|
||||
.expect("Raw::from_value always works.")
|
||||
.deserialize()
|
||||
.map_err(|_| Error::bad_database("Invalid PowerLevels event in db."))
|
||||
.map_err(|e| {
|
||||
warn!("Invalid create event: {}", e);
|
||||
Error::bad_database("Invalid create event in db.")
|
||||
})
|
||||
})
|
||||
.transpose()?;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue