From a42b020b9649fb702cc9d13d81e7f000a2ff817b Mon Sep 17 00:00:00 2001 From: MasterAcnolo <68693319+MasterAcnolo@users.noreply.github.com> Date: Tue, 17 Feb 2026 15:19:17 +0100 Subject: [PATCH] Fix: Update URL check to correctly identify playlist links --- server/controller/info.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/controller/info.controller.js b/server/controller/info.controller.js index 761470f..81837a9 100644 --- a/server/controller/info.controller.js +++ b/server/controller/info.controller.js @@ -13,7 +13,7 @@ async function infoController(req, res){ logger.info(`/Info Request receive by the Info Controller. URL: ${url}`); - if (url.includes("&list")) { + if (url.includes("&list") || url.includes("?list")) { logger.info("Estimated Data Type: Playlist") } else{