fix: remove trailing whitespace

This commit is contained in:
xing-xing-coder 2026-03-21 11:51:50 +08:00
parent 8bc6ffd6a2
commit a784fd3cdd

View File

@ -539,12 +539,12 @@ async function runWebFetch(params: WebFetchRuntimeParams): Promise<Record<string
let res: Response;
let release: (() => Promise<void>) | null = null;
let finalUrl = params.url;
// Build SSRF policy from config
const policy = params.ssrfPolicy?.allowRfc2544BenchmarkRange
? { allowRfc2544BenchmarkRange: true }
: undefined;
try {
const result = await fetchWithWebToolsNetworkGuard({
url: params.url,