From 9fff2a4bf7a43315f565bd6bfa3069ebca4baae4 Mon Sep 17 00:00:00 2001 From: William Oldham Date: Tue, 7 Jan 2025 14:56:55 +0000 Subject: [PATCH] fix: Correct typo in Content-Type header value --- src/services/npdi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/npdi.ts b/src/services/npdi.ts index 0edd8a2..2fc662f 100644 --- a/src/services/npdi.ts +++ b/src/services/npdi.ts @@ -11,7 +11,7 @@ npdi.get('/p01/data/1/:titleHash/:dataID/:fileHash', (request, response) => { response.sendFile(contentPath, { headers: { - 'Content-Type': 'applicatoin/octet-stream', + 'Content-Type': 'application/octet-stream', 'Content-Disposition': 'attachment', 'Content-Transfer-Encoding': 'binary', }