2
0
mirror of https://github.com/yagop/node-telegram-bot-api synced 2025-08-22 18:07:16 +00:00

test: Fix lint error

This commit is contained in:
GochoMugo 2017-11-27 06:37:04 +03:00
parent 13472899e4
commit cfde217488
No known key found for this signature in database
GPG Key ID: 7B6A01CB57AA39E4

View File

@ -1543,7 +1543,7 @@ class TelegramBot extends EventEmitter {
answerShippingQuery(shippingQueryId, ok, form = {}) {
form.shipping_query_id = shippingQueryId;
form.ok = ok;
form.shipping_options = JSON.stringify(form.shipping_options)
form.shipping_options = JSON.stringify(form.shipping_options);
return this._request('answerShippingQuery', { form });
}