Fix: #1660 panic
This commit is contained in:
parent
d7e31932c7
commit
088b281a6a
1 changed files with 3 additions and 1 deletions
|
@ -39,7 +39,9 @@ func (dc *dohClient) ExchangeContext(ctx context.Context, m *D.Msg) (msg *D.Msg,
|
||||||
|
|
||||||
req = req.WithContext(ctx)
|
req = req.WithContext(ctx)
|
||||||
msg, err = dc.doRequest(req)
|
msg, err = dc.doRequest(req)
|
||||||
msg.Id = m.Id
|
if err == nil {
|
||||||
|
msg.Id = m.Id
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue