From c6eebb4c1d6ba66646a528f153753f6eb781bccc Mon Sep 17 00:00:00 2001 From: monanxiao Date: Fri, 17 Mar 2023 18:02:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BE=AE=E4=BF=A1=E6=98=B5?= =?UTF-8?q?=E7=A7=B0=E3=80=81=E5=A4=B4=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/repositories/wechat/WechatUserRepository.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/common/repositories/wechat/WechatUserRepository.php b/app/common/repositories/wechat/WechatUserRepository.php index 50b1c1d3..50bd0c33 100644 --- a/app/common/repositories/wechat/WechatUserRepository.php +++ b/app/common/repositories/wechat/WechatUserRepository.php @@ -125,8 +125,8 @@ class WechatUserRepository extends BaseRepository $wechatUser = $this->dao->routineIdByWechatUser($routineOpenid); return Db::transaction(function () use ($createUser, $routineInfo, $wechatUser) { if ($wechatUser) { - $routineInfo['nickname'] = $wechatUser['nickname']; - $routineInfo['headimgurl'] = $wechatUser['headimgurl']; + // $routineInfo['nickname'] = $wechatUser['nickname']; + // $routineInfo['headimgurl'] = $wechatUser['headimgurl']; $wechatUser->save($routineInfo); } else { $wechatUser = $this->dao->create($routineInfo);