From 805a1f65eb9867623522d66fa3089dc0841c2559 Mon Sep 17 00:00:00 2001 From: gnehs Date: Fri, 19 Jul 2024 10:51:15 +0800 Subject: [PATCH] fixed help crush --- components/help.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/help.js b/components/help.js index 35e639c..7d671b4 100644 --- a/components/help.js +++ b/components/help.js @@ -6,8 +6,8 @@ const subscribeIdList = Object.entries(require("../list").subscribeIdList) .join(""); bot.help(async (ctx) => { let { first_name } = await telegram.getMe(); - ctx.replyWithMarkdownV2( - `*${first_name}的指令清單* + ctx.replyWithHTML( + `${first_name}的指令清單 /about - 關於 /date - 傳回伺服器的時間 /dayoff - 台灣行政院人事局的停班課 @@ -15,13 +15,13 @@ bot.help(async (ctx) => { /removekbd - 移除鍵盤 /start - 開始 -*訂閱功能* -/subscribe <訂閱編號> <可選參數> - 訂閱 -/unsubscribe <訂閱編號> <可選參數> - 取消訂閱 +訂閱功能 +/subscribe 訂閱編號 可選參數 - 訂閱 +/unsubscribe 訂閱編號 可選參數 - 取消訂閱 -*訂閱編號* +訂閱編號 ${subscribeIdList} -*測試* +測試 /admin - 檢查是否具此聊天室的管理權限 `, { reply_to_message_id: ctx.message.message_id }