summaryrefslogtreecommitdiff
path: root/irc/tokens.go
diff options
context:
space:
mode:
authordelthas <delthas@dille.cc>2021-12-01 13:46:42 +0100
committerdelthas <delthas@dille.cc>2022-02-10 11:21:26 +0100
commit8d2b4a928c2783657cccbfe7b9aa5a9f77be3c9e (patch)
tree6212dabe20439b901bf267dd8d1a1666376aa17b /irc/tokens.go
parentdocs: update Ctrl-C behaviour (diff)
MONITOR user with whom we have an open buffer
Diffstat (limited to '')
-rw-r--r--irc/tokens.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/irc/tokens.go b/irc/tokens.go
index ab7b418..aaffc08 100644
--- a/irc/tokens.go
+++ b/irc/tokens.go
@@ -460,9 +460,10 @@ func ParseCaps(caps string) (diff []Cap) {
// Member is a token in RPL_NAMREPLY's last parameter.
type Member struct {
- PowerLevel string
- Name *Prefix
- Away bool
+ PowerLevel string
+ Name *Prefix
+ Away bool
+ Disconnected bool
}
type members []Member