|
@@ -77,7 +77,7 @@ namespace TEAMModelOS.Controllers.Client
|
|
|
string picture = join.pic;
|
|
|
long ts = join.ts;
|
|
|
long nowTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
|
|
|
- if (nowTime - ts > 1000 * 60 * 60 * 1)
|
|
|
+ if (nowTime - ts > 3600000)
|
|
|
{
|
|
|
return Ok(new { error=1,msg="超时!"});
|
|
|
}
|