Fix domain resolver on direct outbound

This commit is contained in:
世界 2025-02-26 08:00:09 +08:00
parent f9d5927101
commit 6d6789a4c5
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 3 additions and 1 deletions

View file

@ -45,7 +45,7 @@ func NewOutbound(ctx context.Context, router adapter.Router, logger log.ContextL
if options.Detour != "" {
return nil, E.New("`detour` is not supported in direct context")
}
outboundDialer, err := dialer.New(ctx, options.DialerOptions, false)
outboundDialer, err := dialer.New(ctx, options.DialerOptions, true)
if err != nil {
return nil, err
}