Skip to content

Commit

Permalink
fix: recombine attribute values with :
Browse files Browse the repository at this point in the history
  • Loading branch information
joerdav committed Aug 24, 2022
1 parent 2e25fe9 commit bc397fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (p *parser) parseAttribute() (ok bool, err error) {
if !ok {
return
}
rest := strings.Join(s[1:], " ")
rest := strings.Join(s[1:], ":")
switch ty {
case AttributeTypeReq:
vs := strings.Split(rest, ",")
Expand Down

0 comments on commit bc397fd

Please sign in to comment.