Commit c6a5c35707587c28a92783c6294d66a76f0ef741
1 parent
7d5a437f
Exists in
master
提交
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/HttpServer/logic/function.go
| ... | ... | @@ -830,7 +830,7 @@ func GetdagongList(uuid int) (*WorkList,[]InviteWorkOffDesc,error) { |
| 830 | 830 | //此处时间改为600s |
| 831 | 831 | nowtime := int(time.Now().Unix()) |
| 832 | 832 | for i:=0;i<len(list);i++ { |
| 833 | - if nowtime > 600 + list[i].InviteTime { | |
| 833 | + if nowtime > 4*3600 + list[i].InviteTime { | |
| 834 | 834 | var tmp InviteWorkOffDesc |
| 835 | 835 | tmp.Uuid = list[i].Uuid |
| 836 | 836 | tmp.InviteTime = list[i].InviteTime | ... | ... |