From e77c5ad8ec413d6d798538740034825aa0764c8b Mon Sep 17 00:00:00 2001 From: GochoMugo Date: Fri, 13 Jan 2017 16:00:42 +0300 Subject: [PATCH] src: Fix lint error --- src/telegram.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/telegram.js b/src/telegram.js index a4975df..61881da 100644 --- a/src/telegram.js +++ b/src/telegram.js @@ -143,7 +143,7 @@ class TelegramBot extends EventEmitter { this._fixReplyMarkup(options.qs); } - options.method = "POST"; + options.method = 'POST'; options.url = this._buildURL(_path); options.simple = false; options.resolveWithFullResponse = true;