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 | 557 | } else { |
| 558 | 558 | //不是同一天了 |
| 559 | 559 | isdiffday = true |
| 560 | - if nowtimestamp.Unix() >= lasttimestamp.Unix()+86399 { | |
| 560 | + if nowtimestamp.Unix() != lasttimestamp.Unix()+86400 { | |
| 561 | 561 | //超过一天了 |
| 562 | 562 | u.ContinueLoginDay = 1 |
| 563 | 563 | } else { | ... | ... |
src/HttpServer/logic/logic.go
| ... | ... | @@ -149,7 +149,7 @@ func HandlerGetcash(w http.ResponseWriter, data string, uuid int) { |
| 149 | 149 | |
| 150 | 150 | if info.Preisfind == 0 { |
| 151 | 151 | logger.Error("HandlerGetcash Preisfind err=%v", err) |
| 152 | - resp.Message = "请先完成前一挡体现" | |
| 152 | + resp.Message = "请先完成前一档提现" | |
| 153 | 153 | resp.Code = ERROR_PRENOTFINISH |
| 154 | 154 | break |
| 155 | 155 | } | ... | ... |