This commit is contained in:
Dreamacro 2021-10-11 21:05:38 +08:00
parent 3d5681cffd
commit 13bd601cac

View File

@ -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
} }