Add support for draft/extended-monitor

References: https://github.com/ircv3/ircv3-specifications/pull/466
This commit is contained in:
delthas 2021-11-15 14:38:19 +01:00 committed by Simon Ser
parent 5d46dd72a4
commit 840d142f1c
2 changed files with 4 additions and 0 deletions

View File

@ -205,6 +205,8 @@ var needAllDownstreamCaps = map[string]string{
"away-notify": "",
"extended-join": "",
"multi-prefix": "",
"draft/extended-monitor": "",
}
// passthroughIsupport is the set of ISUPPORT tokens that are directly passed

View File

@ -32,6 +32,8 @@ var permanentUpstreamCaps = map[string]bool{
"multi-prefix": true,
"server-time": true,
"setname": true,
"draft/extended-monitor": true,
}
type registrationError string