mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
fix #850
This commit is contained in:
parent
cc25637fef
commit
5e5003f5b6
@ -516,6 +516,9 @@ func (client *Client) getWhoisOf(target *Client, rb *ResponseBuffer) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
rb.Add(nil, client.server.name, RPL_WHOISIDLE, cnick, tnick, strconv.FormatUint(target.IdleSeconds(), 10), strconv.FormatInt(target.SignonTime(), 10), client.t("seconds idle, signon time"))
|
rb.Add(nil, client.server.name, RPL_WHOISIDLE, cnick, tnick, strconv.FormatUint(target.IdleSeconds(), 10), strconv.FormatInt(target.SignonTime(), 10), client.t("seconds idle, signon time"))
|
||||||
|
if target.Away() {
|
||||||
|
rb.Add(nil, client.server.name, RPL_AWAY, cnick, tnick, target.AwayMessage())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// rplWhoReply returns the WHO reply between one user and another channel/user.
|
// rplWhoReply returns the WHO reply between one user and another channel/user.
|
||||||
|
Loading…
Reference in New Issue
Block a user