Skip to content

Commit

Permalink
🔧 淘汰区
Browse files Browse the repository at this point in the history
  • Loading branch information
adlered committed Dec 23, 2024
1 parent 4a976f3 commit 38ad175
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public static boolean record(final RequestContext context) {
}
}
StringBuilder userSessionList = new StringBuilder();
userSessionList.append("<details><summary>北京一区(" + ChatroomChannel.SESSIONS.size() + "人)</summary>");
userSessionList.append("<details><summary>淘汰区(" + ChatroomChannel.SESSIONS.size() + "人)</summary>");
for (Map.Entry<String, Integer> s : sessionList.entrySet()) {
userSessionList.append(s.getKey() + " " + s.getValue() + "<br>");
}
Expand Down Expand Up @@ -388,9 +388,9 @@ public static boolean record(final RequestContext context) {
Map<String, Long> result = ChatroomChannel.check();
StringBuilder stringBuilder = new StringBuilder();
if (result.isEmpty()) {
sendBotMsg("北京一区:报告!没有超过6小时未活跃的成员,一切都很和谐~");
sendBotMsg("淘汰区:报告!没有超过6小时未活跃的成员,一切都很和谐~");
} else {
stringBuilder.append("北京一区:报告!成功扫描超过6小时未活跃的成员,并已将他们断开连接:<br>");
stringBuilder.append("淘汰区:报告!成功扫描超过6小时未活跃的成员,并已将他们断开连接:<br>");
stringBuilder.append("<details><summary>不活跃用户列表</summary>");
for (String i : result.keySet()) {
long time = result.get(i);
Expand Down

0 comments on commit 38ad175

Please sign in to comment.