From d8eb1559c8f948ff64dd908e7ec24d4e495aad77 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Thu, 15 Jan 2026 13:18:58 +0100 Subject: [PATCH] Update Problem bei #54 --- backend/src/routes/resources/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/routes/resources/main.ts b/backend/src/routes/resources/main.ts index 2fb0cfc..1d082a2 100644 --- a/backend/src/routes/resources/main.ts +++ b/backend/src/routes/resources/main.ts @@ -522,7 +522,7 @@ export default async function resourceRoutes(server: FastifyInstance) { Object.keys(data).forEach((key) => { console.log(key) - if(key.includes("_at") || key.includes("At") || key.toLowerCase().includes("date")) { + if((key.includes("_at") || key.includes("At") || key.toLowerCase().includes("date") ) && key !=="deliveryDateType") { data[key] = normalizeDate(data[key]) } })