Fix: dns api panic on disable dns section (#2498)

This commit is contained in:
yaling888 2023-01-18 16:58:03 +08:00 committed by metacubex
parent a6a72a5b54
commit 03520e0d6f

View file

@ -20,6 +20,12 @@ func dnsRouter() http.Handler {
}
func queryDNS(w http.ResponseWriter, r *http.Request) {
if resolver.DefaultResolver == nil {
render.Status(r, http.StatusInternalServerError)
render.JSON(w, r, newError("DNS section is disabled"))
return
}
name := r.URL.Query().Get("name")
qTypeStr, _ := lo.Coalesce(r.URL.Query().Get("type"), "A")