We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c47e9 commit 896fe80Copy full SHA for 896fe80
src/cli/mod.rs
@@ -63,6 +63,10 @@ pub fn start_app(args: Args) {
63
error!("Failed to deserialize response for {id}: {e}");
64
println!("{id}: Error parsing response from PSN, try again later ({e}).");
65
}
66
+ UpdateError::XmlEncodingError(e) => {
67
+ error!("Failed to deserialize response for {id}: {e}");
68
+ println!("{id}: Error parsing response from PSN, try again later ({e}).");
69
+ }
70
UpdateError::ManifestParsing(e) => {
71
error!("Failed to deserialize manifest response for {id}: {e}");
72
println!("{id}: Error parsing manifest response from PSN, try again later ({e}).");
0 commit comments