summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
authorHubert Hirtz <hubert@hirtz.pm>2021-12-06 12:56:47 +0100
committerHubert Hirtz <hubert@hirtz.pm>2021-12-06 12:56:47 +0100
commit049101c45cd2935168ed27560a95bd69a2ca6df0 (patch)
treec7f49ba33d47fc24fa41c323a8f401a7eaa1cff9 /app.go
parentMerge redundant events (diff)
Do not mark the buffer as unread on MODE
Diffstat (limited to 'app.go')
-rw-r--r--app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.go b/app.go
index 636efba..22d5364 100644
--- a/app.go
+++ b/app.go
@@ -698,7 +698,7 @@ func (app *App) handleIRCEvent(netID string, ev interface{}) {
app.win.SetTopic(netID, ev.Channel, topic)
case irc.ModeChangeEvent:
line := app.formatEvent(ev)
- app.win.AddLine(netID, ev.Channel, ui.NotifyUnread, line)
+ app.win.AddLine(netID, ev.Channel, ui.NotifyNone, line)
case irc.InviteEvent:
var buffer string
var notify ui.NotifyType