|
|
@@ -33,7 +33,7 @@ class ApiController extends webApp
|
|
|
$userId = isset($tokenData['user_id'])? $tokenData['user_id'] : 0;
|
|
|
$userType = isset($tokenData['user_type']) && $tokenData['user_type']? $tokenData['user_type'] : 1;
|
|
|
$authTime = isset($tokenData['auth_time']) && $tokenData['auth_time']? $tokenData['auth_time'] : 0;
|
|
|
- if($authTime && $authTime < date('YmdHis', time() - 30)){
|
|
|
+ if($authTime && $authTime < date('YmdHis', time() - 86400)){
|
|
|
return showJson(1067,false);
|
|
|
}
|
|
|
|