]> jfr.im git - irc/quakenet/qwebirc.git/commitdiff
fix /topic in status window
authorChris Porter <redacted>
Wed, 13 Aug 2014 22:22:19 +0000 (23:22 +0100)
committerChris Porter <redacted>
Wed, 13 Aug 2014 22:22:19 +0000 (23:22 +0100)
js/irc/commands.js

index d13920f8c1e4a118d39c990c4edf9ce61855c217..f55f0a8ba4e7be8b8858513533e18493a76bd6b6 100644 (file)
@@ -167,7 +167,7 @@ qwebirc.irc.Commands = new Class({
   cmd_DEVOICE: [true, 6, 1, function(args) {
     this.automode("-", "v", args);
   }],
-  cmd_TOPIC: [true, 1, 1, function(args) {
+  cmd_TOPIC: [false, 1, 1, function(args) {
     var w = this.getActiveWindow();
     if(w.client.isChannel(args[0])) {
       this.send("TOPIC " + args[0]);