diff --git a/webapp/controller/AvatarController.class.php b/webapp/controller/AvatarController.class.php index 232c8de6..22eebd64 100644 --- a/webapp/controller/AvatarController.class.php +++ b/webapp/controller/AvatarController.class.php @@ -157,7 +157,11 @@ class AvatarController extends BaseAuthedController { LogService::consumeDiamond($event); } Avatar::addAvatar($itemMeta); - $this->_rspOk(); + $propertyChgService = new services\PropertyChgService(); + $propertyChgService->addUserChg(); + $this->_rspData(array( + 'property_chg' => $propertyChgService->toDto(), + )); } }