Commit 89e2e9ff32529b876e69a98c7f0718f9b547cb65

Authored by 陆恒
1 parent 4ade02ba
Exists in master

提交

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
src/HttpServer/logic/function.go
... ... @@ -496,10 +496,11 @@ func (u *UserData) HandlePassDay() {
496 496 isdiffday = true
497 497 if nowtimestamp.Unix() != lasttimestamp.Unix()+86400 {
498 498 u.ContinueLoginDay = 1
499   - u.SumLoginDay++
  499 +
500 500 } else {
501 501 u.ContinueLoginDay++
502 502 }
  503 + u.SumLoginDay++
503 504 logger.Info("HandlePassDay now=%v,last=%v", nowtimestamp.Unix(), lasttimestamp.Unix())
504 505 }
505 506  
... ...