From 62e5a9811840ba18678647f8036e844cc0294824 Mon Sep 17 00:00:00 2001 From: rajchales-monito Date: Thu, 30 Jul 2026 11:42:12 +0200 Subject: [PATCH] Remove Telegram reply instruction text --- server.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server.js b/server.js index 84fe8a1..a50a1f6 100644 --- a/server.js +++ b/server.js @@ -1303,9 +1303,7 @@ function telegramVisitorMessageText(conversation, message, attachmentCount) { "", message.body ? `Zprava: ${message.body}` : (attachmentCount ? "Zprava: (poslana fotka)" : ""), message.translated_body ? `\nPreklad: ${message.translated_body}` : "", - attachmentCount ? `\nPrilohy: ${attachmentCount} fotka/fotek` : "", - "", - "Odpovez pres Reply na tuto zpravu." + attachmentCount ? `\nPrilohy: ${attachmentCount} fotka/fotek` : "" ]; return lines.filter((line) => line !== "").join("\n"); }