]> jfr.im git - irc/quakenet/qwebirc.git/commitdiff
Merge.
authorChris Porter <redacted>
Wed, 13 Aug 2014 21:32:25 +0000 (22:32 +0100)
committerChris Porter <redacted>
Wed, 13 Aug 2014 21:32:25 +0000 (22:32 +0100)
js/irc/ircclient.js

index 8f0e305eb1a2152558744732a39935cbb1fbf85a..ef792f1320fbd1b19e769cd8b4434583db2b6bf5 100644 (file)
@@ -363,7 +363,7 @@ qwebirc.irc.IRCClient = new Class({
     var channels = this.tracker.getNick(newnick);
     if($defined(channels)) {
       channels.each(function (c) {
-        var found = true;
+        found = true;
 
         this.newChanLine(c, "NICK", user, {"w": newnick});
         this.updateNickList(c);
@@ -371,7 +371,7 @@ qwebirc.irc.IRCClient = new Class({
     }
 
     if(this.getQueryWindow(oldnick)) {
-      var found = true;
+      found = true;
       this.renameWindow(oldnick, newnick);
       this.newLine(newnick, "NICK", {"n": oldnick, "w": newnick});
     }