From 207a777912b6b097cb1026aef53181185633f49e Mon Sep 17 00:00:00 2001 From: Cory Chaplin Date: Sun, 23 Feb 2014 21:09:22 +0100 Subject: [PATCH] Fix for #489 --- client/src/models/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/models/application.js b/client/src/models/application.js index 58af46c..bc60a95 100644 --- a/client/src/models/application.js +++ b/client/src/models/application.js @@ -720,7 +720,7 @@ message = formatToIrcMsg(ev.params.join(' ')); panel.addMsg(_kiwi.app.connections.active_connection.get('nick'), message); - this.connections.active_connection.gateway.privmsg(destination, message); + this.connections.active_connection.gateway.msg(destination, message); } function actionCommand (ev) { -- 2.25.1