From eae8fd4a24c8c85a20dca567a0337597b874ddeb Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 12 Apr 2026 09:27:43 -0400 Subject: [PATCH] fix: preserve group field in manifest during cmd_edit The ManifestEntry was being written with group: None instead of preserving the entry's existing group value during edits. Co-Authored-By: Claude Opus 4.6 (1M context) --- crates/idfoto-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/idfoto-cli/src/main.rs b/crates/idfoto-cli/src/main.rs index 00659bc..b5b7bfb 100644 --- a/crates/idfoto-cli/src/main.rs +++ b/crates/idfoto-cli/src/main.rs @@ -681,7 +681,7 @@ fn cmd_edit(query: String) -> Result<()> { name: name.clone(), url, username, - group: None, + group: updated_entry.group, updated_at: now, }, );