From 27eb471f9e7350b9283399e8b87acde73d5621ab Mon Sep 17 00:00:00 2001 From: pinks Date: Sat, 23 Sep 2023 01:44:44 +0200 Subject: [PATCH] don't ping users in queue command --- bot/queueCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/queueCommand.ts b/bot/queueCommand.ts index c33c0d7..ea4eef7 100644 --- a/bot/queueCommand.ts +++ b/bot/queueCommand.ts @@ -6,7 +6,7 @@ import { getConfig } from "../db/config.ts"; export async function queueCommand(ctx: Grammy.CommandContext) { let formattedMessage = await getMessageText(); - const queueMessage = await ctx.replyFmt(formattedMessage); + const queueMessage = await ctx.replyFmt(formattedMessage, { disable_notification: true }); handleFutureUpdates().catch((err) => logger().warning(`Updating queue message failed: ${err}`)); async function getMessageText() {