We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b2986 commit 17b9426Copy full SHA for 17b9426
1 file changed
rfcparser/parser.go
@@ -190,8 +190,8 @@ func (p *Parser) ParseLiteral() ([]byte, error) {
190
return nil, fmt.Errorf("invalid literal size")
191
}
192
193
- if literalSize >= 55*1024*1024 {
194
- return nil, fmt.Errorf("literal size exceeds maximum size of 55MB")
+ if literalSize >= 70*1024*1024 {
+ return nil, fmt.Errorf("literal size exceeds maximum size of 70MB")
195
196
197
0 commit comments