X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=daemon.go;h=b5c3e56f3e97ad6f933436f55b6ad89eb68f3e3c;hb=491e6602aa27f2266c8bc2c6d009b8cd658f440e;hp=1af9712616a383ad1a3b869bf3143e85756dd037;hpb=7770e09e68f8dd0991ecd5a32383a89ac3e50857;p=goircd.git diff --git a/daemon.go b/daemon.go index 1af9712..b5c3e56 100644 --- a/daemon.go +++ b/daemon.go @@ -1,6 +1,6 @@ /* goircd -- minimalistic simple Internet Relay Chat (IRC) server -Copyright (C) 2014-2015 Sergey Matveev +Copyright (C) 2014-2016 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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 - } } }