Bug 448950 - Properly encode unicode nickname for invites

r=silver@warwickcompsoc.co.uk
ChatZilla Only.


git-svn-id: svn://10.0.0.236/trunk@254088 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gijskruitbosch%gmail.com
2008-09-08 08:39:19 +00:00
parent f539660ac8
commit 1b64a5d52e

View File

@@ -2970,7 +2970,8 @@ function chan_part (reason)
CIRCChannel.prototype.invite =
function chan_inviteuser (nick)
{
this.parent.sendData("INVITE " + nick + " " + this.encodedName + "\n");
var rawNick = fromUnicode(nick, this.parent);
this.parent.sendData("INVITE " + rawNick + " " + this.encodedName + "\n");
return true;
}