back_recharge
xuexinpeng 2023-05-22 15:27:39 +08:00
parent e9cea00128
commit 2cd4efa036
1 changed files with 2 additions and 1 deletions

View File

@ -1772,6 +1772,7 @@ public class PlayerLogic {
}
if (serverId == GameApplication.serverId) {
try {
LOGGER.info("getUserByRpc uid={} serverId={}",uid,serverId);
return UserManager.getUser(uid, true);
} catch (Exception e) {
LOGGER.info("getUserByRpc Exception uid={} e={}", uid, e);
@ -1815,7 +1816,7 @@ public class PlayerLogic {
}
// JSONObject jsonObject = JSONObject.parseObject(userStr);
// jsonObject.remove("activityManager");
LOGGER.info("callback=> rPCClient is =>{}",userStr);
return gson.fromJson(userStr, User.class);
}