Bug 842183 - Land in comm-central Instantbird's changes to chat/ - 5 - Bio 1710 - Unhandled IRC message: 335, r=aleth.

This commit is contained in:
Patrick Cloke 2013-01-17 20:28:11 -05:00
Родитель 445515032e
Коммит f1e69c2f0c
3 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -173,6 +173,7 @@ tooltip.secure=Using a secure connection
# The away message of the user
tooltip.away=Away
tooltip.ircOp=IRC Operator
tooltip.bot=Bot
tooltip.idleTime=Idle for
tooltip.channels=Currently on

Просмотреть файл

@ -893,6 +893,7 @@ ircAccount.prototype = {
secure: normalizeBool,
away: null,
ircOp: normalizeBool,
bot: normalizeBool,
idleTime: null,
channels: null
};

Просмотреть файл

@ -96,6 +96,11 @@ var ircNonStandard = {
return true;
},
"335": function(aMessage) { // RPL_WHOISBOT (Unreal)
// <nick> :is a \002Bot\002 on <network>
return this.setWhois(aMessage.params[1], {bot: true});
},
"378": function(aMessage) { // RPL_WHOISHOST (Unreal & Charybdis)
// <nick> :is connecting from <host> <ip>
let [host, ip] = aMessage.params[2].split(" ").slice(-2);