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
{{ message }}
This repository has been archived by the owner on Apr 12, 2018. It is now read-only.
bot.sendMessage(msg.chat.id, "This bot is for interacting with instapapas. If you want to search a picture of instapapas, you have to write /search and then the name of the picture you want to search in the same message. If you write it in different messages, the bot will not search anything. If you want you can use it inline too.");
});
bot.onText(/\/search (.+)/, (msg, match) => {
const name = match[1];
socket.emit("search", name, fb => {
for (var i in fb) {
bot.sendPhoto(msg.chat.id, fb[i].url, {
caption: fb[i].name
});
}
if (fb.length === 0) bot.sendMessage(msg.chat.id, "No photos with that name available");