|
...
|
...
|
@@ -92,11 +92,11 @@ class ProjectAssociationController extends BaseController |
|
|
|
} catch (\Exception $exception) {
|
|
|
|
DB::rollBack();
|
|
|
|
// 数据错误,请重试
|
|
|
|
$this->response('error');
|
|
|
|
$this->response('error', Code::SERVER_ERROR);
|
|
|
|
}
|
|
|
|
if (is_null($isRes)) {
|
|
|
|
// 请开启AICC绑定
|
|
|
|
$this->response('success');
|
|
|
|
$this->response('success', Code::SERVER_ERROR);
|
|
|
|
}
|
|
|
|
$redis_key = 'aicc_friend_lists_' . (int)env('AICC_WECHAT_USER_ID');
|
|
|
|
$result = isset($cache) ? false : redis_get($redis_key);
|
...
|
...
|
|