Skip to content

Commit

Permalink
Merge pull request #240 from transifex/devel
Browse files Browse the repository at this point in the history
Release v1.6.16
  • Loading branch information
foteinigk authored Aug 13, 2024
2 parents 1641901 + 8f4f7ef commit b0cf262
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 b0cf262

Please sign in to comment.