You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bot.on('postback:PERSISTENT_MENU_CON', (payload, chat) => {
chat.say('*Thats must be some contacts*');
chat.say('You can right your contact request here:')
bot.on('message', (payload, chat) => {
const text = payload.message.text;
chat.say('Your request sended!');
console.log(`Request from Contacts: ${text}`)
});
});
And i have this part:
bot.on('postback:PERSISTENT_MENU_ANT', (payload, chat) => {
chat.say('Write your question here:')
bot.on('message', (payload, chat) => {
const text = payload.message.text;
chat.say('Your question sended!');
console.log(`Question from User: ${text}`)
});
});
They intertwine, asking several times how to fix it?
The text was updated successfully, but these errors were encountered:
I have a part of code:
And i have this part:
They intertwine, asking several times how to fix it?
The text was updated successfully, but these errors were encountered: