From a85ca54feb4d850717623dd361d54fc76eee79cd Mon Sep 17 00:00:00 2001 From: SnapOtter Date: Mon, 11 May 2026 21:28:24 +0800 Subject: [PATCH] refactor: remove redundant trim in URL parser --- apps/web/src/lib/url-parser.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/web/src/lib/url-parser.ts b/apps/web/src/lib/url-parser.ts index 1a491510..fc750ce9 100644 --- a/apps/web/src/lib/url-parser.ts +++ b/apps/web/src/lib/url-parser.ts @@ -33,7 +33,6 @@ export function extractUrls(input: string): string[] { continue; } - line = line.trim(); if (isValidHttpUrl(line)) { urls.push(line); }