diff options
Diffstat (limited to 'webchat')
-rw-r--r-- | webchat/hello_web.js | 2 |
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) { |