From 19078173921d50561b8bf438de364fbfa3ee72b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Wed, 21 Feb 2024 22:16:06 +0100 Subject: [PATCH] fix envelope issues preventing sync to work properly --- Cargo.lock | 2 +- src/account/command/sync.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c98db5b..52b029a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/src/account/command/sync.rs b/src/account/command/sync.rs index b955cf4..892c950 100644 --- a/src/account/command/sync.rs +++ b/src/account/command/sync.rs @@ -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}"))?; } }