From a9659b7444536575024b0814bf1268b5f7b03f50 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Thu, 10 Dec 2015 11:27:14 +0300 Subject: [PATCH] Fix receive timestamp setting --- daemon.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daemon.go b/daemon.go index 1af9712..55491d7 100644 --- a/daemon.go +++ b/daemon.go @@ -346,6 +346,9 @@ func Processor(events chan ClientEvent, finished chan struct{}) { ClientRegister(client, cmd, cols) continue } + if client != nil { + client.recvTimestamp = now + } switch cmd { case "AWAY": if len(cols) == 1 { @@ -514,8 +517,5 @@ func Processor(events chan ClientEvent, finished chan struct{}) { client.ReplyNicknamed("421", cmd, "Unknown command") } } - if client != nil { - client.recvTimestamp = now - } } } -- 2.44.0