From f1e58f132ff4d773b74715a1e0aed748806bfc77 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()}
`;