3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-22 11:59:40 +01:00

send * for WHOX o (oplevel) instead of 0

Jobe points out that 0 is a valid oplevel in some contexts,
* is a better placeholder for "unimplemented".
This commit is contained in:
Shivaram Lingamneni 2021-12-12 03:05:56 -05:00
parent bfae13aad9
commit 122a232eed

View File

@ -3275,9 +3275,9 @@ func (client *Client) rplWhoReply(channel *Channel, target *Client, rb *Response
}
params = append(params, fAccount)
}
if fields.Has('o') { // target's channel power level
//TODO: implement this
params = append(params, "0")
if fields.Has('o') {
// channel oplevel, not implemented
params = append(params, "*")
}
if fields.Has('r') {
params = append(params, details.realname)