From 7ee6ce7ed2cbbbd784634ef9990fa9cc6f7efb28 Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 11 Feb 2025 17:11:16 +0000 Subject: [PATCH] docs: Update description for Telegram label (no-changelog) (#12780) --- packages/nodes-base/nodes/Telegram/Telegram.node.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/nodes-base/nodes/Telegram/Telegram.node.ts b/packages/nodes-base/nodes/Telegram/Telegram.node.ts index 6f7e4906e3..0a96b9c7a1 100644 --- a/packages/nodes-base/nodes/Telegram/Telegram.node.ts +++ b/packages/nodes-base/nodes/Telegram/Telegram.node.ts @@ -351,7 +351,7 @@ export class Telegram implements INodeType { }, required: true, description: - 'Unique identifier for the target chat or username of the target channel (in the format @channelusername)', + 'Unique identifier for the target chat or username, To find your chat ID ask @get_id_bot', }, // ---------------------------------- @@ -706,7 +706,7 @@ export class Telegram implements INodeType { }, required: true, description: - 'Unique identifier for the target chat or username of the target channel (in the format @channelusername). To find your chat ID ask @get_id_bot.', + 'Unique identifier for the target chat or username, To find your chat ID ask @get_id_bot', }, // ---------------------------------- // message:sendAnimation/sendAudio/sendDocument/sendPhoto/sendSticker/sendVideo @@ -2141,7 +2141,9 @@ export class Telegram implements INodeType { }, }; - responseData = await apiRequest.call(this, requestMethod, endpoint, {}, qs, { formData }); + responseData = await apiRequest.call(this, requestMethod, endpoint, {}, qs, { + formData, + }); } else { responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs); }