diff options
| author | delthas <delthas@dille.cc> | 2022-08-05 01:03:34 +0200 |
|---|---|---|
| committer | delthas <delthas@dille.cc> | 2022-08-05 01:03:34 +0200 |
| commit | 8aa2a20d73d5ab0911744c9e44a3fd5c423185f0 (patch) | |
| tree | b201132b9bb6d57ecd23053416b12064cf96c144 | |
| parent | Add 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.go | 2 |
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 { |
