From ca49977625efd867e9cc4e47954e6d953737969d Mon Sep 17 00:00:00 2001 From: La123123 <617330105@qq.com> Date: Tue, 21 Apr 2026 16:28:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E7=AE=A1=E7=90=86=E5=8F=98?= =?UTF-8?q?=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-admin-ui/src/views/im/platformConfiguration/index.vue | 2 +- .../java/org/dromara/im/service/impl/ImAgentServiceImpl.java | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/im-admin-ui/src/views/im/platformConfiguration/index.vue b/im-admin-ui/src/views/im/platformConfiguration/index.vue index 0180306..1385992 100644 --- a/im-admin-ui/src/views/im/platformConfiguration/index.vue +++ b/im-admin-ui/src/views/im/platformConfiguration/index.vue @@ -78,7 +78,7 @@ - + diff --git a/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/impl/ImAgentServiceImpl.java b/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/impl/ImAgentServiceImpl.java index f8d4742..97a4aac 100644 --- a/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/impl/ImAgentServiceImpl.java +++ b/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/impl/ImAgentServiceImpl.java @@ -166,7 +166,6 @@ public class ImAgentServiceImpl implements IImAgentService { ImAgent agent = baseMapper.selectOne(new LambdaQueryWrapper().eq(ImAgent::getSysId, userId)); String token = "error"; - System.out.println("走到error"); if(ObjectUtil.isNotNull(agent)){ String uniqueToken = agent.getUniqueToken(); if(ObjectUtil.isNotEmpty(uniqueToken)){ @@ -175,8 +174,6 @@ public class ImAgentServiceImpl implements IImAgentService { RedisUtils.setCacheObject(cacheKey, token, Duration.ofHours(1)); } } - System.out.println("走到末尾"); - System.out.println(token); return token; }