fix envelope issues preventing sync to work properly

This commit is contained in:
Clément DOUIN 2024-02-21 22:16:06 +01:00
parent 3e0cf0cfda
commit 1907817392
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View file

@ -1217,7 +1217,7 @@ dependencies = [
[[package]]
name = "email-lib"
version = "0.21.0"
source = "git+https://git.sr.ht/~soywod/pimalaya#358717d3579ffacad2bbabd9d116a292473e38ae"
source = "git+https://git.sr.ht/~soywod/pimalaya#a38466919a71133704375ff6cd10d3a010232cf5"
dependencies = [
"advisory-lock",
"anyhow",

View file

@ -239,7 +239,7 @@ impl AccountSyncCommand {
if !envelopes_patch_err.is_empty() {
printer.print_log("")?;
printer.print_log("Errors occurred while applying the envelopes patch:")?;
for (hunk, err) in folders_patch_err {
for (hunk, err) in envelopes_patch_err {
printer.print_log(format!(" - {hunk}: {err}"))?;
}
}