mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 03:32:33 +08:00
fix: better error check
This commit is contained in:
parent
d3562ce394
commit
dbbd499349
|
@ -12,7 +12,6 @@ import (
|
|||
"net/url"
|
||||
"runtime"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
|
@ -141,7 +140,7 @@ func (doh *dnsOverHTTPS) ExchangeContext(ctx context.Context, m *D.Msg) (msg *D.
|
|||
msg, err = doh.exchangeHTTPS(ctx, client, m)
|
||||
}
|
||||
|
||||
if err != nil && !strings.Contains(err.Error(), "context canceled") {
|
||||
if err != nil && !errors.Is(err, context.Canceled) {
|
||||
// If the request failed anyway, make sure we don't use this client.
|
||||
_, resErr := doh.resetClient(ctx, err)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user