Treat server broadcasts as highlights
This commit is contained in:
parent
095006e961
commit
bc05fd5c11
2 changed files with 10 additions and 1 deletions
|
@ -288,6 +288,13 @@ export function isHighlight(msg, nick, cm) {
|
|||
}
|
||||
}
|
||||
|
||||
export function isServerBroadcast(msg) {
|
||||
if (msg.command != "PRIVMSG" && msg.command != "NOTICE") {
|
||||
return false;
|
||||
}
|
||||
return msg.params[0].startsWith("$");
|
||||
}
|
||||
|
||||
export function isError(cmd) {
|
||||
if (cmd >= "400" && cmd <= "568") {
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue