fix: 修复获取用户信息时数据复制错误
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
xinian
2026-02-23 01:24:57 +08:00
committed by cnb
parent cb0e5b0645
commit 9cf80062a3

View File

@@ -23,7 +23,7 @@ func (h Controller) GetUserSimInfo(data *user.SimUserInfoInboundInfo, player *pl
if r == nil {
return nil, errorcode.ErrorCode(errorcode.ErrorCodes.ErrSystemError)
}
copier.Copy(result, player.Service.Info.Person(data.UserId).Data)
copier.Copy(result, r.Data)
}
return result, 0