From e0ffe8ac287709ffa4af4e1325b86ad73d78ae50 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Mon, 5 Oct 2015 23:56:15 +0300 Subject: [PATCH] Fix client workability when sending message to unexistent recipient --- daemon.go | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon.go b/daemon.go index 53dde3e..30d8c5d 100644 --- a/daemon.go +++ b/daemon.go @@ -458,6 +458,7 @@ func (daemon *Daemon) Processor(events <-chan ClientEvent) { r, found := daemon.rooms[target] if !found { client.ReplyNoNickChan(target) + continue } daemon.roomSinks[r] <- ClientEvent{ client, -- 2.44.0