Andrey
Andrey
The function retuned the wrong callback. Bug fixes: return this._request ('answerShippingQuery', params, callback); ^ ReferenceError: callback is not defined Fix #50
I get an error when trying to respond to an event "pre_checkout_query". My Code ``` slimbot.on('pre_checkout_query', async payment => { console.log(payment); if (payment.invoice_payload.includes('pay')){ let user = await database.select('*').from('users').where({telegram_id: payment.from.id}); if...