summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelthas <delthas@dille.cc>2022-08-05 01:03:34 +0200
committerdelthas <delthas@dille.cc>2022-08-05 01:03:34 +0200
commit8aa2a20d73d5ab0911744c9e44a3fd5c423185f0 (patch)
treeb201132b9bb6d57ecd23053416b12064cf96c144
parentAdd a config option to beep on highlight (diff)
Hide automatic away replies
We don't care about them since we display the user away status using MONITOR.
-rw-r--r--irc/session.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/irc/session.go b/irc/session.go
index f30ce8b..1a9b659 100644
--- a/irc/session.go
+++ b/irc/session.go
@@ -1373,6 +1373,8 @@ func (s *Session) handleMessageRegistered(msg Message, playback bool) (Event, er
}, nil
case errMonlistisfull:
// silence monlist full error, we don't care because we do it best-effort
+ case rplAway:
+ // we display user away status, we don't care about automatic AWAY replies
default:
if msg.IsReply() {
if len(msg.Params) < 2 {