mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-26 23:28:08 +03:00
* /control/set_upstreams_config: allow empty upstream list
This commit is contained in:
parent
4f4da3397c
commit
1b3122dd35
1 changed files with 6 additions and 4 deletions
|
@ -146,10 +146,12 @@ func (s *Server) handleSetUpstreamConfig(w http.ResponseWriter, r *http.Request)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
err = ValidateUpstreams(req.Upstreams)
|
if len(req.Upstreams) != 0 {
|
||||||
if err != nil {
|
err = ValidateUpstreams(req.Upstreams)
|
||||||
httpError(r, w, http.StatusBadRequest, "wrong upstreams specification: %s", err)
|
if err != nil {
|
||||||
return
|
httpError(r, w, http.StatusBadRequest, "wrong upstreams specification: %s", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
newconf := FilteringConfig{}
|
newconf := FilteringConfig{}
|
||||||
|
|
Loading…
Reference in a new issue