mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
🐛 Fix typo
This commit is contained in:
parent
a032c5448d
commit
5e0ff8fce7
|
@ -119,7 +119,7 @@ export class TelegramTrigger implements INodeType {
|
|||
options: [
|
||||
{
|
||||
displayName: 'Download Images/Files',
|
||||
name: 'donwload',
|
||||
name: 'download',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: `Telegram develiers the image in 3 sizes.<br>
|
||||
|
@ -209,7 +209,7 @@ export class TelegramTrigger implements INodeType {
|
|||
|
||||
const additionalFields = this.getNodeParameter('additionalFields') as IDataObject;
|
||||
|
||||
if (additionalFields.donwload === true) {
|
||||
if (additionalFields.download === true) {
|
||||
|
||||
let imageSize = 'large';
|
||||
|
||||
|
|
Loading…
Reference in a new issue