From 96579f07e989df5273b297c24a0a218bffc8279d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Prie=C3=9Fnitz?= Date: Wed, 3 Dec 2025 22:09:32 +0100 Subject: [PATCH] [deploy] Fix list parsing to escape newlines --- src/web/routes/dashboard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/routes/dashboard.ts b/src/web/routes/dashboard.ts index 5cc4183..0127ccc 100644 --- a/src/web/routes/dashboard.ts +++ b/src/web/routes/dashboard.ts @@ -1374,7 +1374,7 @@ router.get('/', (req, res) => { function parseList(val) { return (val || '') - .split(/[,\\n]/) + .split(/[,\n]/) .map((s) => s.trim()) .filter(Boolean); }