mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-05-15 05:56:07 +00:00
Fix case issue
This commit is contained in:
+1
-1
@@ -70,7 +70,7 @@ func (s *Server) parseRequestIETF(w http.ResponseWriter, r *http.Request) *DNSRe
|
||||
}
|
||||
|
||||
if s.conf.Verbose && len(msg.Question) > 0 {
|
||||
question := msg.Question[0]
|
||||
question := &msg.Question[0]
|
||||
questionName := question.Name
|
||||
questionClass := ""
|
||||
if qclass, ok := dns.ClassToString[question.Qclass]; ok {
|
||||
|
||||
Reference in New Issue
Block a user