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:
Родитель
445515032e
Коммит
f1e69c2f0c
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче