From 87773af70025e071c0fe371511ef5db4f6158cdb Mon Sep 17 00:00:00 2001 From: "gijskruitbosch%gmail.com" Date: Mon, 13 Nov 2006 01:27:33 +0000 Subject: [PATCH] Bug 345315 - /network command is useless r=silver@warwickcompsoc.co.uk (James Ross) ChatZilla Only. --- extensions/irc/xul/content/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/irc/xul/content/commands.js b/extensions/irc/xul/content/commands.js index 060ade919d22..fe9eb66c5853 100644 --- a/extensions/irc/xul/content/commands.js +++ b/extensions/irc/xul/content/commands.js @@ -1389,7 +1389,7 @@ function cmdNetwork(e) var network = client.networks[e.networkName]; if (!("messages" in network)) - network.displayHere(getMsg(MSG_NETWORK_OPENED, network.name)); + network.displayHere(getMsg(MSG_NETWORK_OPENED, network.unicodeName)); dispatch("set-current-view", { view: network }); }