From 5014673aaeda8768b57f087a46b4a5a51ef4c842 Mon Sep 17 00:00:00 2001 From: Hubert Hirtz Date: Fri, 26 Mar 2021 10:17:48 +0100 Subject: [PATCH] Fix CHATHISTORY target not being casemapped --- downstream.go | 1 + 1 file changed, 1 insertion(+) diff --git a/downstream.go b/downstream.go index cf9da70..1ccad42 100644 --- a/downstream.go +++ b/downstream.go @@ -1819,6 +1819,7 @@ func (dc *downstreamConn) handleMessageRegistered(msg *irc.Message) error { if err != nil { return err } + entity = uc.network.casemap(entity) // TODO: support msgid criteria criteriaParts := strings.SplitN(criteria, "=", 2)