summaryrefslogtreecommitdiffstats
path: root/webchat
diff options
context:
space:
mode:
authorFelix Richter <github@syntax-fehler.de>2013-11-06 16:12:34 +0100
committerFelix Richter <github@syntax-fehler.de>2013-11-06 16:12:34 +0100
commit1ea4ebba7a392f2a4a369c5693c2eb705958bd77 (patch)
tree3603db53e6524db8fdcaba31b978bec7c215a193 /webchat
parent16a4cda248de734f3771c0bb721ec1834ad96cc8 (diff)
webchat: add spaces around hello arrow
Diffstat (limited to 'webchat')
-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) {