]> jfr.im git - irc/quakenet/qwebirc.git/commitdiff
Fix formatting of 324/329 numerics: Don't show the unformatted messages
authorsoczol <redacted>
Sun, 5 Jul 2009 10:47:48 +0000 (12:47 +0200)
committerUnknown <redacted>
Sun, 5 Jul 2009 10:47:48 +0000 (12:47 +0200)
js/irc/baseircclient.js

index 23056e9e90ca6c360991b96c13c07a8ddb704317..95512a39279ba6cab3491ba370cacb99467e3ec2 100644 (file)
@@ -468,11 +468,13 @@ qwebirc.irc.BaseIRCClient = new Class({
     var time = params[2];
 
     this.channelCreationTime(channel, time);    
+    return true;
   },
   irc_RPL_CHANNELMODEIS: function(prefix, params) {
     var channel = params[1];
     var modes = params.slice(2);
 
     this.channelModeIs(channel, modes);
+    return true;
   }
 });