fix: telegram bot/miniapp bugs (#258)

This commit is contained in:
Dream Hunter
2024-05-21 13:28:02 +08:00
committed by GitHub
parent 8459e0c306
commit 96ea81e055

View File

@@ -47,7 +47,7 @@ export function newTelegramBot(c: Context<HonoCustomType>, token: string): Teleg
bot.use(async (ctx, next) => {
// skip non-message
if (ctx.updateType != "message") return await next();
if (ctx.updateType != "message") return;
// check if in private chat
if (ctx.chat?.type !== "private") {
return await ctx.reply("请在私聊中使用");