From 84087570c3821ccf2052bdeea1e1bc47975a202a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Mon, 22 Aug 2016 22:00:30 +0200 Subject: [PATCH] Fixed typo... That's kinda embarrasing --- dodsorfas/Skypebot/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dodsorfas/Skypebot/app.js b/dodsorfas/Skypebot/app.js index 2d6c45b..26ef38e 100644 --- a/dodsorfas/Skypebot/app.js +++ b/dodsorfas/Skypebot/app.js @@ -39,6 +39,6 @@ bot.dialog('/', new builder.IntentDialog() .matches(helper.regex("memes"), function(s) {cmd.memes(s)}) .matches(helper.regex("debug"), function(s) {cmd.debug(s)}) .onDefault(function(session) { - console2.log(session); + console.log(session); session.send("I didn't understand. Say 'help' to get a list of commands!"); }));