fix: correct RPL_MYINFO channel modes from 'imnst' to 'mnst'
Some checks failed
check / check (push) Failing after 1m45s

+i (invite-only) is not implemented in this PR (Tier 2, issue #86).
RPL_MYINFO (004) must match CHANMODES in 005 which advertises 'mnst'.
This commit is contained in:
user
2026-03-22 03:34:01 -07:00
parent 3851909a96
commit 3a6fc92e94

View File

@@ -447,7 +447,7 @@ func (hdlr *Handlers) deliverWelcome(
// 004 RPL_MYINFO
hdlr.enqueueNumeric(
ctx, clientID, irc.RplMyInfo, nick,
[]string{srvName, version, "", "imnst"},
[]string{srvName, version, "", "mnst"},
"",
)