From 42a2d242732e15fba4ed9a65f26aa0b160b47bf6 Mon Sep 17 00:00:00 2001 From: evolun Date: Fri, 6 May 2016 12:28:03 +0200 Subject: [PATCH] Eslint correction --- src/telegram.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/telegram.js b/src/telegram.js index a65f28f..1f21325 100644 --- a/src/telegram.js +++ b/src/telegram.js @@ -22,7 +22,7 @@ class TelegramBot extends EventEmitter { 'location', 'new_chat_participant', 'left_chat_participant', 'new_chat_title', 'new_chat_photo', 'delete_chat_photo', 'group_chat_created' ]; - + /** * Both request method to obtain messages are implemented. To use standard polling, set `polling: true` * on `options`. Notice that [webHook](https://core.telegram.org/bots/api#setwebhook) will need a SSL certificate. @@ -372,7 +372,7 @@ class TelegramBot extends EventEmitter { opts.formData = content[0]; opts.qs.document = content[1]; if (opts.formData && Object.keys(fileOpts).length) { - opts.formData['document'].options = fileOpts; + opts.formData.document.options = fileOpts; } return this._request('sendDocument', opts); }