diff --git a/src/main/java/org/b3log/symphony/processor/bot/ChatRoomBot.java b/src/main/java/org/b3log/symphony/processor/bot/ChatRoomBot.java index 5747dd6f..7ecb23c3 100644 --- a/src/main/java/org/b3log/symphony/processor/bot/ChatRoomBot.java +++ b/src/main/java/org/b3log/symphony/processor/bot/ChatRoomBot.java @@ -304,7 +304,7 @@ public static boolean record(final RequestContext context) { } } StringBuilder userSessionList = new StringBuilder(); - userSessionList.append("
北京一区(" + ChatroomChannel.SESSIONS.size() + "人)"); + userSessionList.append("
淘汰区(" + ChatroomChannel.SESSIONS.size() + "人)"); for (Map.Entry s : sessionList.entrySet()) { userSessionList.append(s.getKey() + " " + s.getValue() + "
"); } @@ -388,9 +388,9 @@ public static boolean record(final RequestContext context) { Map result = ChatroomChannel.check(); StringBuilder stringBuilder = new StringBuilder(); if (result.isEmpty()) { - sendBotMsg("北京一区:报告!没有超过6小时未活跃的成员,一切都很和谐~"); + sendBotMsg("淘汰区:报告!没有超过6小时未活跃的成员,一切都很和谐~"); } else { - stringBuilder.append("北京一区:报告!成功扫描超过6小时未活跃的成员,并已将他们断开连接:
"); + stringBuilder.append("淘汰区:报告!成功扫描超过6小时未活跃的成员,并已将他们断开连接:
"); stringBuilder.append("
不活跃用户列表"); for (String i : result.keySet()) { long time = result.get(i);