mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07:36 +03:00
Unbreak running without a captive portal configuration file
This commit is contained in:
parent
5843e49188
commit
60d4c98f31
3 changed files with 7 additions and 3 deletions
|
@ -14,7 +14,9 @@ func NetProbe(proxy *Proxy, address string, timeout int) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if captivePortalHandler, err := ColdStart(proxy); err == nil {
|
if captivePortalHandler, err := ColdStart(proxy); err == nil {
|
||||||
defer captivePortalHandler.Stop()
|
if captivePortalHandler != nil {
|
||||||
|
defer captivePortalHandler.Stop()
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
dlog.Critical(err)
|
dlog.Critical(err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,9 @@ func NetProbe(proxy *Proxy, address string, timeout int) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if captivePortalHandler, err := ColdStart(proxy); err == nil {
|
if captivePortalHandler, err := ColdStart(proxy); err == nil {
|
||||||
defer captivePortalHandler.Stop()
|
if captivePortalHandler != nil {
|
||||||
|
defer captivePortalHandler.Stop()
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
dlog.Critical(err)
|
dlog.Critical(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue