Web · Wiki · Activities · Blog · Lists · Chat · Meeting · Bugs · Git · Translate · Archive · People · Donate

Commit 099c5230fee7e05497ecad445b59922b31afc361

  • avatar
  • Chris Porter <slug @quak…et.org>
  • Sun Oct 19 21:04:44 EDT 2008
/away shouldn't go to status, don't display nickchanges in status window if we're on a channel either.
  
396396 },
397397 irc_RPL_NOWAWAY: function(prefix, params) {
398398 this.awayStatus(true, params.indexFromEnd(-1));
399 return true;
399400 },
400401 irc_RPL_UNAWAY: function(prefix, params) {
401402 this.awayStatus(false, params.indexFromEnd(-1));
403 return true;
402404 }
403405});
  
235235 this.tracker.renameNick(oldnick, newnick);
236236
237237 var channels = this.tracker.getNick(newnick);
238 var found = false;
238239
239240 for(var c in channels) {
241 var found = true;
242
240243 this.newChanLine(c, "NICK", user, {"w": newnick});
241244 /* TODO: rename queries */
242245 this.updateNickList(c);
243246 }
244247
245 this.newChanLine(undefined, "NICK", user, {"w": newnick});
248 if(!found)
249 this.newChanLine(undefined, "NICK", user, {"w": newnick});
246250 },
247251 channelTopic: function(user, channel, topic) {
248252 this.newChanLine(channel, "TOPIC", user, {"m": topic});