Fix join panic bug
This commit is contained in:
parent
2a749c1e99
commit
86177faae7
2 changed files with 2 additions and 2 deletions
|
@ -934,7 +934,7 @@ pub(crate) async fn invite_helper<'a>(
|
||||||
unsigned.insert("prev_content".to_owned(), prev_pdu.content.clone());
|
unsigned.insert("prev_content".to_owned(), prev_pdu.content.clone());
|
||||||
unsigned.insert(
|
unsigned.insert(
|
||||||
"prev_sender".to_owned(),
|
"prev_sender".to_owned(),
|
||||||
serde_json::from_str(prev_pdu.sender.as_str()).expect("UserId is valid string"),
|
to_raw_value(&prev_pdu.sender).expect("UserId is valid"),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2721,7 +2721,7 @@ pub fn create_join_event_template_route(
|
||||||
unsigned.insert("prev_content".to_owned(), prev_pdu.content.clone());
|
unsigned.insert("prev_content".to_owned(), prev_pdu.content.clone());
|
||||||
unsigned.insert(
|
unsigned.insert(
|
||||||
"prev_sender".to_owned(),
|
"prev_sender".to_owned(),
|
||||||
serde_json::from_str(prev_pdu.sender.as_str()).expect("UserId is valid string"),
|
to_raw_value(&prev_pdu.sender).expect("UserId is valid"),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue