Skip to content

Commit

Permalink
Do not add rly(vx.y.z) to memo
Browse files Browse the repository at this point in the history
  • Loading branch information
luckychess committed Aug 20, 2024
1 parent f6bf7c9 commit ef95e88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ef95e88

Please sign in to comment.