We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77ad4b8 commit 808a8daCopy full SHA for 808a8da
src/backend/packagekit.rs
@@ -72,7 +72,9 @@ fn transaction_handle(
72
"ErrorCode" => {
73
// https://www.freedesktop.org/software/PackageKit/gtk-doc/Transaction.html#Transaction::ErrorCode
74
let (code, details) = signal.body::<(u32, String)>()?;
75
- return Err(format!("{details} (code {code})").into());
+ if code != 48 {
76
+ return Err(format!("{details} (code {code})").into());
77
+ }
78
}
79
"ItemProgress" => {
80
// https://www.freedesktop.org/software/PackageKit/gtk-doc/Transaction.html#Transaction::ItemProgress
0 commit comments