mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-22 17:10:10 +00:00
email: use strconv.Itoa instead of sprintf
This commit is contained in:
parent
dbe7e2e659
commit
30f16e7207
7
email.go
7
email.go
@ -11,6 +11,7 @@ import (
|
||||
"io"
|
||||
"net/smtp"
|
||||
"os"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
textTemplate "text/template"
|
||||
@ -108,13 +109,13 @@ func (emailer *Emailer) formatExpiry(expiry time.Time, tzaware bool, datePattern
|
||||
}
|
||||
_, _, days, hours, minutes, _ := timeDiff(expiry, currentTime)
|
||||
if days != 0 {
|
||||
expiresIn += fmt.Sprintf("%dd ", days)
|
||||
expiresIn += strconv.Itoa(days) + "d "
|
||||
}
|
||||
if hours != 0 {
|
||||
expiresIn += fmt.Sprintf("%dh ", hours)
|
||||
expiresIn += strconv.Itoa(hours) + "h "
|
||||
}
|
||||
if minutes != 0 {
|
||||
expiresIn += fmt.Sprintf("%dm ", minutes)
|
||||
expiresIn += strconv.Itoa(minutes) + "m "
|
||||
}
|
||||
expiresIn = strings.TrimSuffix(expiresIn, " ")
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user