yz-yuki-plugin 2.0.5-11 → 2.0.5-12
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/apps/bilibili.js +1 -1
- package/package.json +1 -1
package/lib/apps/bilibili.js
CHANGED
|
@@ -445,7 +445,7 @@ message.use(async (e) => {
|
|
|
445
445
|
}
|
|
446
446
|
const message = [`昵称:${data?.name}`, `\n性别:${data?.sex}`, `\n等级:${data?.level}`];
|
|
447
447
|
if (data.live_room) {
|
|
448
|
-
message.push(
|
|
448
|
+
message.push(`\n***********\n---直播信息---`, `\n直播标题:${data?.live_room?.title}`, `\n直播房间:${data?.live_room?.roomid}`, `\n直播状态:${data?.live_room?.liveStatus ? '直播中' : '未开播'}`, `\n观看人数:${data?.live_room?.watched_show?.num}人`);
|
|
449
449
|
e.reply(`直播链接:${data?.live_room?.url}`);
|
|
450
450
|
}
|
|
451
451
|
e.reply(message);
|