mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
docs: Update description for Telegram label (no-changelog)
This commit is contained in:
parent
024ada822c
commit
d9c0ac55d6
|
@ -328,7 +328,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',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
|
@ -683,7 +683,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
|
||||
|
@ -2085,7 +2085,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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue