From 76c25dea9f9e9d5fde0162913bade3d63a4a368d Mon Sep 17 00:00:00 2001 From: jae Date: Wed, 15 Apr 2026 21:28:31 +0000 Subject: [PATCH] fix: add missing country code to PDF URL path in crimescene.js --- js/crimescene.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/crimescene.js b/js/crimescene.js index 3e4c9d2..3373b54 100644 --- a/js/crimescene.js +++ b/js/crimescene.js @@ -318,7 +318,7 @@ const doc = findDocument(col, docId); if (!doc) return renderNotFound('Document not found'); - const pdfUrl = `${PDF_BASE}/${catId}/${colId}/${doc.filename}`; + const pdfUrl = `${PDF_BASE}/${catId}/${countryCode}/${colId}/${doc.filename}`; let html = ''; html += `
CASE FILE // ${esc(doc.title).toUpperCase()}
`;