Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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