summaryrefslogtreecommitdiffstats
path: root/webchat/hello_web.js
diff options
context:
space:
mode:
Diffstat (limited to 'webchat/hello_web.js')
-rw-r--r--webchat/hello_web.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webchat/hello_web.js b/webchat/hello_web.js
index e1f8f312..81048d38 100644
--- a/webchat/hello_web.js
+++ b/webchat/hello_web.js
@@ -59,7 +59,7 @@ conn.write(JSON.stringify({from: 'system', message: 'hello'}))
var object = JSON.parse(message);
object.from = name
console.log(object.message);
- irc_client.say("#krebs", name + '→' + object.message);
+ irc_client.say("#krebs", name + ' → ' + object.message);
Clients.broadcast(object);
} catch (error) {