0
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-08-24 15:38:35 +00:00

fix no handler found

This commit is contained in:
patterniha 2025-08-18 08:15:42 +03:30
parent 42e227dcfe
commit b95f15c09d

View File

@ -290,7 +290,8 @@ func (h *Handler) Dial(ctx context.Context, dest net.Destination) (stat.Connecti
return h.getStatCouterConnection(conn), nil
}
errors.LogWarning(ctx, "failed to get outbound handler with tag: ", tag)
errors.LogError(ctx, "failed to get outbound handler with tag: ", tag)
return nil, errors.New("failed to get outbound handler with tag: " + tag)
}
if h.senderSettings.Via != nil {