Commit 4cee7e5a6abe3cfd918573b31f93dce3ecdb0656

Authored by Adhidarma Hadiwinoto
1 parent 934c4415b9
Exists in master

disable cb

Showing 1 changed file with 4 additions and 1 deletions Side-by-side Diff

... ... @@ -50,12 +50,15 @@ bot.on('chat', function(partner, msg) {
50 50 me: config.username,
51 51 partner: partner,
52 52 msg: msg.trim()
53   - },
  53 + }
  54 + /*
  55 + ,
54 56 function(err, params) {
55 57 if (params && params.msg) {
56 58 bot.send(partner, params.msg);
57 59 }
58 60 }
  61 + */
59 62 )
60 63 }
61 64 })