From d7009e88b37f8f89c1c740bf572699b49b030a84 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Mon, 15 Dec 2025 20:04:54 +0800 Subject: [PATCH] =?UTF-8?q?null=20=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/user/user/impl/UserProfileClientServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/user/user/impl/UserProfileClientServiceImpl.java b/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/user/user/impl/UserProfileClientServiceImpl.java index ab5e55ec..0fd506f9 100644 --- a/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/user/user/impl/UserProfileClientServiceImpl.java +++ b/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/user/user/impl/UserProfileClientServiceImpl.java @@ -127,7 +127,8 @@ public class UserProfileClientServiceImpl implements UserProfileClientService { @Override public Timestamp read(JsonReader in) throws IOException { - if (in.peek() == null) { + if (in.peek() == JsonToken.NULL) { + in.nextNull(); return null; } long time = in.nextLong(); // 从时间戳反序列化