Abbreviate net status service reply
Don't print the nickname if it's the same as the downstream connection's.
This commit is contained in:
parent
7b35757bac
commit
6899e748c6
@ -246,7 +246,11 @@ func handleServiceNetworkStatus(dc *downstreamConn, params []string) error {
|
|||||||
var statuses []string
|
var statuses []string
|
||||||
var details string
|
var details string
|
||||||
if uc := net.upstream(); uc != nil {
|
if uc := net.upstream(); uc != nil {
|
||||||
statuses = append(statuses, "connected as "+uc.nick)
|
if dc.nick != uc.nick {
|
||||||
|
statuses = append(statuses, "connected as "+uc.nick)
|
||||||
|
} else {
|
||||||
|
statuses = append(statuses, "connected")
|
||||||
|
}
|
||||||
details = fmt.Sprintf("%v channels", len(uc.channels))
|
details = fmt.Sprintf("%v channels", len(uc.channels))
|
||||||
} else {
|
} else {
|
||||||
statuses = append(statuses, "disconnected")
|
statuses = append(statuses, "disconnected")
|
||||||
|
Loading…
Reference in New Issue
Block a user