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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user