Skip to content

Commit

Permalink
Fix for truncateMessage function
Browse files Browse the repository at this point in the history
  • Loading branch information
foteinigk committed Aug 13, 2024
1 parent ca77c86 commit ba9b695
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions internal/txlib/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ func truncateMessage(message string) string {
maxLength = 0
}

if len(message) > maxLength {
return message[:maxLength-2] + ".."
if len(message) > maxLength && maxLength > 0 {
return message[:maxLength] + ".."
}
return message
}
2 changes: 1 addition & 1 deletion internal/txlib/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func TestTruncateMessage(t *testing.T) {
)
assert.Equal(
t,
"this is a long message that needs to be truncated because it exceeds the max..",
"this is a long message that needs to be truncated because it exceeds the maxim..",
result,
)

Expand Down

0 comments on commit ba9b695

Please sign in to comment.