Closed
Bug 216778
Opened 22 years ago
Closed 21 years ago
msg part in IRC Url is ignored
Categories
(Other Applications :: ChatZilla, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: Matti, Assigned: rginda)
References
()
Details
(Keywords: regression)
win2k build 20030820
1) open the URL
2) CZ connects to the server andjoins the channel #mozillazine but doesn't send
the msg part in the URL
3) try this in Mozilla1.4 and it will work
Comment 1•21 years ago
|
||
It looks like "targetObject" is undefined from these lines:
targetObject = network.dispatch("query", {nickname: nick});
targetObject = network.dispatch("join",
...which means it's got nowhere to send the message to. Irronically, the channel
code drops out if it's not defined, but the user/query one just keels over with
a JS exception. This could be because...
CIRCNetwork.prototype.dispatch =
function this_dispatch(text, e, isInteractive, flags) {
e = getObjectDetails(this, e);
dispatch(text, e, isInteractive, flags);
}
...doesn't return a value, but the base dispatch call (used here) does, and
should just return it's value.
Comment 2•21 years ago
|
||
Fixed in ChatZilla 0.9.65.
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
•