From b514306a06b70bc8a33aab9a26959bd1357e4b3f Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 3 Apr 2023 22:35:16 +0200 Subject: [PATCH] upstream: forward ERR_NOSUCHNICK --- upstream.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/upstream.go b/upstream.go index 8d76cc7..b2af23f 100644 --- a/upstream.go +++ b/upstream.go @@ -1734,6 +1734,8 @@ func (uc *upstreamConn) handleMessage(ctx context.Context, msg *irc.Message) err if dc != nil { dc.SendMessage(msg) } + } else { + uc.forwardMsgByID(downstreamID, msg) } case xirc.ERR_UNKNOWNERROR, irc.ERR_UNKNOWNCOMMAND, irc.ERR_NEEDMOREPARAMS, irc.RPL_TRYAGAIN: var command, reason string