Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/nodes-base/nodes/Telegram/Telegram.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},

// ----------------------------------
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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);
}
Expand Down
Loading