upstream: use unspecified AWAY reason if possible
This commit is contained in:
parent
5ae86d69cc
commit
d354a30b43
@ -2191,9 +2191,13 @@ func (uc *upstreamConn) updateAway() {
|
||||
return
|
||||
}
|
||||
if away {
|
||||
reason := "Auto away"
|
||||
if uc.caps.IsAvailable("draft/pre-away") {
|
||||
reason = "*"
|
||||
}
|
||||
uc.SendMessage(ctx, &irc.Message{
|
||||
Command: "AWAY",
|
||||
Params: []string{"Auto away"},
|
||||
Params: []string{reason},
|
||||
})
|
||||
} else {
|
||||
uc.SendMessage(ctx, &irc.Message{
|
||||
|
Loading…
Reference in New Issue
Block a user