Commit 69b4fbc0 authored by hujiebin's avatar hujiebin

Update anniversary.go

parent c2bb0889
......@@ -176,10 +176,6 @@ func UpdateCpAnniversaryReminded(model *domain.Model, id mysql.ID) error {
// 计算下一个纪念日
func CalcNextAnniversary(timestamp int64) int64 {
now := time.Now()
// 还没超过一天,不用计算明年的
if now.Unix()-timestamp < 86400 {
return timestamp
}
birthday := time.Unix(timestamp, 0)
// 计算今年的生日日期
thisYearBirthday := time.Date(now.Year(), birthday.Month(), birthday.Day(), 0, 0, 0, 0, time.Local)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment