fix: update Rust dependencies

This commit is contained in:
Yuri Karamian
2026-08-17 18:43:11 +02:00
parent 206faed113
commit 2d57577338
3 changed files with 71 additions and 277 deletions
+4 -2
View File
@@ -453,8 +453,10 @@ fn parse_multistatus(xml: &str, base_path: &str) -> Result<Vec<RemoteEntry>, Str
}
Ok(Event::Text(e)) => {
if cap != Cap::None {
if let Ok(t) = e.unescape() {
buf.push_str(&t);
if let Ok(decoded) = e.decode() {
if let Ok(text) = quick_xml::escape::unescape(&decoded) {
buf.push_str(&text);
}
}
}
}