From 546dbc2fb683bceed47284ec613cc3b6ef5ca3ad Mon Sep 17 00:00:00 2001 From: "gijskruitbosch%gmail.com" Date: Tue, 1 Aug 2006 11:42:52 +0000 Subject: [PATCH] Bug 346793 - "You need to be an operator" error after joining channel (except list request) r=silver p=rdmsoft@bugs.rdmsoft.com (Robert Marshall) ChatZilla Only git-svn-id: svn://10.0.0.236/trunk@206287 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/extensions/irc/xul/content/handlers.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mozilla/extensions/irc/xul/content/handlers.js b/mozilla/extensions/irc/xul/content/handlers.js index b339c3a7738..f396bcffe5a 100644 --- a/mozilla/extensions/irc/xul/content/handlers.js +++ b/mozilla/extensions/irc/xul/content/handlers.js @@ -2229,6 +2229,9 @@ function my_endofexcepts(e) CIRCChannel.prototype.on482 = function my_needops(e) { + if ("pendingExceptList" in this) + return; + this.display(getMsg(MSG_CHANNEL_NEEDOPS, this.unicodeName), MT_ERROR); }