From ce79f996824e0f7d618647d8b3de507b643c9f83 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 22 Aug 2024 18:31:34 +0200 Subject: [PATCH] Fix incorrect argument description (#456) * Add new AutoArchive option to autoarchive images which are also archived in google images * Update documentation to add new option * Update logic for autoarchive * Remove dead code Resolve #448 * Fix incorrect message * Merge branch 'main' of github.com:simulot/immich-go --- cmd/upload/upload.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/upload/upload.go b/cmd/upload/upload.go index b2ae29f..318226c 100644 --- a/cmd/upload/upload.go +++ b/cmd/upload/upload.go @@ -164,7 +164,7 @@ func newCommand(ctx context.Context, common *cmd.SharedFlags, args []string, fsO cmd.BoolFunc( "auto-archive", - " google-photos only: Automatically archive photos that are also archived in google photos (default FALSE)", myflag.BoolFlagFn(&app.AutoArchive, true)) + " google-photos only: Automatically archive photos that are also archived in google photos (default TRUE)", myflag.BoolFlagFn(&app.AutoArchive, true)) cmd.BoolFunc( "create-stacks",