mirror of
https://github.com/ergochat/ergo.git
synced 2026-01-26 21:39:21 -08:00
use correct name for RPL_INVEXLIST (#2326)
Rename the constants only; no functional change
This commit is contained in:
parent
2da19a0760
commit
2152000312
2 changed files with 4 additions and 4 deletions
|
|
@ -1473,8 +1473,8 @@ func (channel *Channel) ShowMaskList(client *Client, mode modes.Mode, rb *Respon
|
|||
rpllist = RPL_EXCEPTLIST
|
||||
rplendoflist = RPL_ENDOFEXCEPTLIST
|
||||
} else if mode == modes.InviteMask {
|
||||
rpllist = RPL_INVITELIST
|
||||
rplendoflist = RPL_ENDOFINVITELIST
|
||||
rpllist = RPL_INVEXLIST
|
||||
rplendoflist = RPL_ENDOFINVEXLIST
|
||||
}
|
||||
|
||||
nick := client.Nick()
|
||||
|
|
|
|||
|
|
@ -79,8 +79,8 @@ const (
|
|||
RPL_WHOISACTUALLY = "338"
|
||||
RPL_INVITING = "341"
|
||||
RPL_SUMMONING = "342"
|
||||
RPL_INVITELIST = "346"
|
||||
RPL_ENDOFINVITELIST = "347"
|
||||
RPL_INVEXLIST = "346"
|
||||
RPL_ENDOFINVEXLIST = "347"
|
||||
RPL_EXCEPTLIST = "348"
|
||||
RPL_ENDOFEXCEPTLIST = "349"
|
||||
RPL_VERSION = "351"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue