From 44f2b94164214583c846a86c923c066044a1ace0 Mon Sep 17 00:00:00 2001 From: Ryan Castellucci Date: Sat, 22 Jun 2024 09:03:42 +0100 Subject: [PATCH] correct classic mode prompt "Do you wish to continue to enable the classic mode?" actually defaults to "no" rather than "yes" as the prompt text implies, this corrects the prompt text. --- src/cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/cli.go b/src/cli/cli.go index 36a98649..ae6b2a6f 100644 --- a/src/cli/cli.go +++ b/src/cli/cli.go @@ -143,7 +143,7 @@ multi-user system, this will help ensure that other local users cannot access the shared secret and receive the files instead of the intended recipient. -Do you wish to continue to DISABLE the classic mode? (Y/n) `) +Do you wish to continue to DISABLE the classic mode? (y/N) `) choice := strings.ToLower(utils.GetInput("")) if choice == "y" || choice == "yes" { os.Remove(classicFile)