chore(cargo): bump quick-xml from 0.37.5 to 0.38.3

This commit is contained in:
iequidoo
2025-10-02 05:55:12 -03:00
committed by iequidoo
parent 8eddcfc9d2
commit e0d123f732
6 changed files with 62 additions and 40 deletions

View File

@@ -106,7 +106,7 @@ fn parse_server<B: BufRead>(
}
}
Event::Text(ref event) => {
let val = event.unescape().unwrap_or_default().trim().to_owned();
let val = event.xml_content().unwrap_or_default().trim().to_owned();
match tag_config {
MozConfigTag::Hostname => hostname = Some(val),