This commit is contained in:
aozhiwei 2024-07-20 15:35:08 +08:00
parent dd6cf60934
commit b9c7e05031

View File

@ -16,7 +16,7 @@ import (
)
func GetDaySeconds(seconds int64, timeZone int64) int64 {
return ((seconds+timeZone*3600)/3600/24+1)*3600*24 - 3600*timeZone
return ((seconds+timeZone*3600)/3600/24)*3600*24 - 3600*timeZone
}
func GetTickCount() int64 {