mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
disallow resume from tor to non-tor
This commit is contained in:
parent
5f26023d88
commit
18169cbedf
@ -418,6 +418,11 @@ func (client *Client) tryResume() (success bool) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if oldClient.isTor != client.isTor {
|
||||||
|
client.Send(nil, server.name, "RESUME", "ERR", client.t("Cannot resume connection from Tor to non-Tor or vice versa"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
err := server.clients.Resume(client, oldClient)
|
err := server.clients.Resume(client, oldClient)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
client.Send(nil, server.name, "RESUME", "ERR", client.t("Cannot resume connection"))
|
client.Send(nil, server.name, "RESUME", "ERR", client.t("Cannot resume connection"))
|
||||||
|
Loading…
Reference in New Issue
Block a user