Skip to content

Commit 896fe80

Browse files
add missing error case for cli codepath
1 parent 56c47e9 commit 896fe80

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/cli/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ pub fn start_app(args: Args) {
6363
error!("Failed to deserialize response for {id}: {e}");
6464
println!("{id}: Error parsing response from PSN, try again later ({e}).");
6565
}
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+
}
6670
UpdateError::ManifestParsing(e) => {
6771
error!("Failed to deserialize manifest response for {id}: {e}");
6872
println!("{id}: Error parsing manifest response from PSN, try again later ({e}).");

0 commit comments

Comments
 (0)