1
0
mirror of https://gitlab.com/xmpp-rs/xmpp-rs.git synced 2024-06-13 11:35:44 +02:00

Update quick-xml to 0.22 and bump version

This commit is contained in:
Bastien Orivel 2021-12-12 01:01:29 +01:00 committed by Link Mauve
parent dc6dd19a44
commit 56363714fb
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "minidom"
version = "0.13.0"
version = "0.14.0"
authors = [
"lumi <lumi@pew.im>",
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
@ -21,4 +21,4 @@ edition = "2018"
gitlab = { repository = "xmpp-rs/xmpp-rs" }
[dependencies]
quick-xml = "0.20"
quick-xml = "0.22.0"

View File

@ -413,7 +413,7 @@ impl Element {
}
}
Event::CData(s) => {
let text = reader.decode(&s)?.to_owned();
let text = s.unescape_and_decode(&reader)?;
if !text.is_empty() {
let current_elem = stack.last_mut().unwrap();
current_elem.append_text_node(text);