Closed
Bug 26696
Opened 25 years ago
Closed 25 years ago
chatzilla doesn't display correct nickname
Categories
(Other Applications :: ChatZilla, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: jdsulliv, Assigned: rginda)
Details
If you log into a IRC server with a nickname that is already in use, chatzilla
will pause and you must do a /nick newNick before you can continue. This works
fine, and the nick does change, but in the status bar at the bottom it never
updates it.
For example, the preset nick of IRCMonkey is used to log into moznet and someone
is already logged into moznet with that nick. It won't let you continue until
you change the nick. All of your text submitted will be with the correct nick
but the status line at the bottom still will be incorrect, stuck with the
'IRCMonkey' nick.
Reporter | ||
Comment 1•25 years ago
|
||
http://lxr.mozilla.org/seamonkey/source/extensions/irc/js/lib/irc.js#598
does this function need work?
-jon
Assignee | ||
Comment 2•25 years ago
|
||
yes, that's where the trouble was. It was fixed post m13, to read like this:
CIRCServer.prototype.on001 =
function serv_001 (e)
{
/* servers wont send a nick change notification if user was forced
* to change nick while logging in (eg. nick already in use.) We need
* to verify here that what the server thinks our name is, matches what
* we think it is. If not, the server wins.
*/
if (e.params[1] != e.server.me.properNick)
{
renameProperty (e.server.users, e.server.me.nick, e.params[1]);
e.server.me.changeNick(e.params[1]);
}
...etc...
}
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Updated•20 years ago
|
Product: Core → Other Applications
You need to log in
before you can comment on or make changes to this bug.
Description
•