mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-21 10:31:59 -08:00
fix #1125
This commit is contained in:
parent
929e87a489
commit
d33a084bb6
1 changed files with 1 additions and 1 deletions
|
|
@ -1763,7 +1763,7 @@ func (am *AccountManager) applyVHostInfo(client *Client, info VHostInfo) {
|
||||||
}
|
}
|
||||||
oldNickmask := client.NickMaskString()
|
oldNickmask := client.NickMaskString()
|
||||||
updated := client.SetVHost(vhost)
|
updated := client.SetVHost(vhost)
|
||||||
if updated {
|
if updated && client.Registered() {
|
||||||
// TODO: doing I/O here is kind of a kludge
|
// TODO: doing I/O here is kind of a kludge
|
||||||
client.sendChghost(oldNickmask, client.Hostname())
|
client.sendChghost(oldNickmask, client.Hostname())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue