koishi-plugin-imx 2.2.7 → 2.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/modules/mx-space.js +2 -2
- package/package.json +1 -1
package/lib/modules/mx-space.js
CHANGED
|
@@ -382,8 +382,8 @@ function setupCommands(ctx, config, logger) {
|
|
|
382
382
|
`💬 评论 ${comments} 条,🔗 友链 ${links} 条\n` +
|
|
383
383
|
`💭 说说 ${says} 条,⚡ 速记 ${recently} 条\n\n` +
|
|
384
384
|
`🔔 未读评论 ${unread_comments || 0} 条,📮 友链申请 ${link_apply || 0} 条\n` +
|
|
385
|
-
`📈 今日访问 ${today_ip_access_count || 0} 次,👥 最高在线 ${today_max_online || 0} 人\n` +
|
|
386
|
-
`📊 总计在线 ${today_online_total || 0} 人,🔄 调用 ${call_time || 0} 次\n` +
|
|
385
|
+
`📈 今日访问 ${today_ip_access_count || 0} 次,👥 最高在线 ${Number(today_max_online) || 0} 人\n` +
|
|
386
|
+
`📊 总计在线 ${Number(today_online_total) || 0} 人,🔄 调用 ${call_time || 0} 次\n` +
|
|
387
387
|
`🟢 当前在线 ${online || 0} 人`;
|
|
388
388
|
}
|
|
389
389
|
catch (error) {
|