all: rewrite references to strings.Index to strings.Contains
Signed-off-by: Wagner Riffel <wgrriffel@gmail.com>
This commit is contained in:
parent
feacca3c5c
commit
baa70469c3
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ func buildBody(args []string) (string, error) {
|
||||||
for _, opt := range opts {
|
for _, opt := range opts {
|
||||||
switch opt.Option {
|
switch opt.Option {
|
||||||
case 'H':
|
case 'H':
|
||||||
if strings.Index(opt.Value, ":") != -1 {
|
if strings.Contains(opt.Value, ":") {
|
||||||
// ensure first colon is followed by a single space
|
// ensure first colon is followed by a single space
|
||||||
re := regexp.MustCompile(`^(.*?):\s*(.*)`)
|
re := regexp.MustCompile(`^(.*?):\s*(.*)`)
|
||||||
headers += re.ReplaceAllString(opt.Value, "$1: $2") + "\n"
|
headers += re.ReplaceAllString(opt.Value, "$1: $2") + "\n"
|
||||||
|
|
|
@ -173,7 +173,7 @@ func parseAddressList(h *mail.Header, key string) ([]*models.Address, error) {
|
||||||
var converted []*models.Address
|
var converted []*models.Address
|
||||||
addrs, err := h.AddressList(key)
|
addrs, err := h.AddressList(key)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if hdr, err := h.Text(key); err != nil && strings.Index(hdr, "@") < 0 {
|
if hdr, err := h.Text(key); err != nil && strings.Contains(hdr, "@") {
|
||||||
return []*models.Address{&models.Address{
|
return []*models.Address{&models.Address{
|
||||||
Name: hdr,
|
Name: hdr,
|
||||||
}}, nil
|
}}, nil
|
||||||
|
|
Loading…
Reference in a new issue