fix: DoH retry HTTP/3
This commit is contained in:
parent
0bab694233
commit
c3035df5be
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ func (doh *dohTransport) RoundTrip(req *http.Request) (*http.Response, error) {
|
|||
var h3Err bool
|
||||
var fallbackErr bool
|
||||
defer func() {
|
||||
if doh.preferH3 && h3Err {
|
||||
if doh.preferH3 && (h3Err || fallbackErr) {
|
||||
doh.canUseH3.Store(doh.preferH3 && fallbackErr)
|
||||
}
|
||||
}()
|
||||
|
|
Loading…
Reference in a new issue