Slightly increased attribute value limit
This commit is contained in:
parent
4f557067df
commit
b5f6f2e448
@ -136,7 +136,7 @@ func parseAttribute(line string) (string, string) {
|
||||
name = "Source"
|
||||
}
|
||||
|
||||
if len(name) > 25 || len(value) > 40 || strings.HasSuffix(value, ".") {
|
||||
if len(name) > 25 || len(value) > 50 || strings.HasSuffix(value, ".") {
|
||||
return "", ""
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user