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
2 changed files with 2 additions and 2 deletions
+1 -1
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}"))?;
}
}