I found a bug at README. #7

Merged
ryush00 merged 1 commits from patch-1 into master 2015-07-26 14:55:31 +00:00

View File

@ -37,7 +37,7 @@ bot.get(/Hi|Hey|Hello|Yo/, function(message) {
}); });
bot.command('start', function(message) { bot.command('start', function(message) {
var welcome = new File().file('./some_photo.png').caption('Welcome'); var welcome = new File().file('./some_photo.png').caption('Welcome').to(message.chat.id);
bot.send(welcome); bot.send(welcome);
}); });