docs: Update description for Telegram label (no-changelog) (#12780)

This commit is contained in:
Jon 2025-02-11 17:11:16 +00:00 committed by GitHub
parent b6c0d96e43
commit 7ee6ce7ed2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -351,7 +351,7 @@ export class Telegram implements INodeType {
}, },
required: true, required: true,
description: 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, required: true,
description: 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 // 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 { } else {
responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs); responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
} }