This commit is contained in:
aozhiwei 2023-06-08 13:19:57 +08:00
parent 2c2d5ca9b9
commit 15f446afd2

View File

@ -835,9 +835,13 @@ class UserController extends BaseAuthedController {
error_log($response);
$rspObj = json_decode($response, true);
User::Update(array(
'address' => $rspObj['address']
'address' => $rspObj['data']['address']
));
$propertyChgService = new services\PropertyChgService();
$propertyChgService->addUserChg();
$this->_rspData(array(
'property_chg' => $propertyChgService->toDto(),
));
$this->_rspOk();
}
private function dampingElo($userInfo){