Skip to content

Commit

Permalink
fix: increase the formatted message size limits
Browse files Browse the repository at this point in the history
  • Loading branch information
akurilov committed Mar 29, 2024
1 parent a2303b9 commit 8016445
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/messages/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"unicode/utf8"
)

const fmtLenMaxAttrVal = 128
const fmtLenMaxBodyTxt = 512
const fmtLenMaxAttrVal = 256
const fmtLenMaxBodyTxt = 1024

type Format struct {
HtmlPolicy *bluemonday.Policy
Expand Down

0 comments on commit 8016445

Please sign in to comment.