summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelthas <delthas@dille.cc>2022-11-15 11:39:22 +0100
committerdelthas <delthas@dille.cc>2022-11-15 11:39:22 +0100
commitcb0ba0669522ecf8ab0b0c3ccd0f14827eb65832 (patch)
tree83f10ea2852c87e4a8a1669475804318132da9cd
parentPrint date as dd/mm or mm/dd depending on the user locale (diff)
Enable receiving away updates for private buffers
We just need to enable extended-monitor :-)
-rw-r--r--irc/session.go21
1 files changed, 11 insertions, 10 deletions
diff --git a/irc/session.go b/irc/session.go
index f4b3dfd..3706cad 100644
--- a/irc/session.go
+++ b/irc/session.go
@@ -51,16 +51,17 @@ func (auth *SASLPlain) Respond(challenge string) (res string, err error) {
// SupportedCapabilities is the set of capabilities supported by this library.
var SupportedCapabilities = map[string]struct{}{
- "away-notify": {},
- "batch": {},
- "cap-notify": {},
- "echo-message": {},
- "invite-notify": {},
- "message-tags": {},
- "multi-prefix": {},
- "server-time": {},
- "sasl": {},
- "setname": {},
+ "away-notify": {},
+ "batch": {},
+ "cap-notify": {},
+ "echo-message": {},
+ "extended-monitor": {},
+ "invite-notify": {},
+ "message-tags": {},
+ "multi-prefix": {},
+ "server-time": {},
+ "sasl": {},
+ "setname": {},
"draft/chathistory": {},
"draft/event-playback": {},