We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Downloaded latest version from https://www.npmjs.com/package/node-telegram-bot-api and there is error with method "getUserChatBoosts"
There is code from NPM:
getUserChatBoosts(chatId, pollId, form = {}) { form.chat_id = chatId; form.message_id = pollId; return this._request('getUserChatBoosts', { form }); }
And there is code from current repo on GitHub:
getUserChatBoosts(chatId, userId, form = {}) { form.chat_id = chatId; form.user_id = userId; return this._request('getUserChatBoosts', { form }); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Downloaded latest version from https://www.npmjs.com/package/node-telegram-bot-api and there is error with method "getUserChatBoosts"
There is code from NPM:
And there is code from current repo on GitHub:
The text was updated successfully, but these errors were encountered: