Fix receive timestamp setting
This commit is contained in:
parent
61e337b083
commit
8fd97af456
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue