Skip to content

Commit

Permalink
feat: conv tuning [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
akurilov committed Oct 14, 2024
1 parent 9bf0d53 commit b166a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/converter/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func (c svc) convertBody(src *enmime.Envelope, dst *pb.CloudEvent, internal bool
err = fmt.Errorf("%w: %s", ErrParse, "no text data")
default:
dst.Data = &pb.CloudEvent_TextData{
TextData: c.cleanRecipients(txt),
TextData: strings.TrimSpace(c.cleanRecipients(txt)),
}
}
}
Expand Down

0 comments on commit b166a70

Please sign in to comment.