Commit 7d76700db5ffa0f1e02eac34b9da483aaf082084
1 parent
0152164a
Exists in
master
and in
4 other branches
提交
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/HttpServer/logic/function.go
@@ -557,7 +557,7 @@ func (u *UserData) HandlePassDay() { | @@ -557,7 +557,7 @@ func (u *UserData) HandlePassDay() { | ||
557 | } else { | 557 | } else { |
558 | //不是同一天了 | 558 | //不是同一天了 |
559 | isdiffday = true | 559 | isdiffday = true |
560 | - if nowtimestamp.Unix() >= lasttimestamp.Unix()+86399 { | 560 | + if nowtimestamp.Unix() != lasttimestamp.Unix()+86400 { |
561 | //超过一天了 | 561 | //超过一天了 |
562 | u.ContinueLoginDay = 1 | 562 | u.ContinueLoginDay = 1 |
563 | } else { | 563 | } else { |
src/HttpServer/logic/logic.go
@@ -149,7 +149,7 @@ func HandlerGetcash(w http.ResponseWriter, data string, uuid int) { | @@ -149,7 +149,7 @@ func HandlerGetcash(w http.ResponseWriter, data string, uuid int) { | ||
149 | 149 | ||
150 | if info.Preisfind == 0 { | 150 | if info.Preisfind == 0 { |
151 | logger.Error("HandlerGetcash Preisfind err=%v", err) | 151 | logger.Error("HandlerGetcash Preisfind err=%v", err) |
152 | - resp.Message = "请先完成前一挡体现" | 152 | + resp.Message = "请先完成前一档提现" |
153 | resp.Code = ERROR_PRENOTFINISH | 153 | resp.Code = ERROR_PRENOTFINISH |
154 | break | 154 | break |
155 | } | 155 | } |