From ef95e888806cb350fccd9304aad3b7960c07d22a Mon Sep 17 00:00:00 2001 From: Konstantin Munichev Date: Tue, 20 Aug 2024 20:49:55 +0200 Subject: [PATCH] Do not add rly(vx.y.z) to memo --- cmd/config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/config.go b/cmd/config.go index 253580507..982a76b45 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -294,7 +294,8 @@ func rlyMemo(memo string) string { if memo == "" { return defaultMemo } - return fmt.Sprintf("%s | %s", memo, defaultMemo) + return memo + // return fmt.Sprintf("%s | %s", memo, defaultMemo) } // memo returns a formatted message memo string,