From: Darren Date: Mon, 11 Mar 2013 20:07:14 +0000 (+0000) Subject: Client using all given channel prefixes X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d9e06c6e36ea18dab120b1b048f7b81758dfb37d;p=KiwiIRC.git Client using all given channel prefixes --- diff --git a/client/assets/dev/model_gateway.js b/client/assets/dev/model_gateway.js index c06b39c..19fd043 100644 --- a/client/assets/dev/model_gateway.js +++ b/client/assets/dev/model_gateway.js @@ -265,8 +265,7 @@ _kiwi.model.Gateway = function () { $.each(data.options, function (name, value) { switch (name) { case 'CHANTYPES': - // TODO: Check this. Why is it only getting the first char? - that.set('channel_prefix', value.join('').charAt(0)); + that.set('channel_prefix', value.join('')); break; case 'NETWORK': that.set('name', value);