From a4aca9c99d295db5c85bfdf7ce872b1acff19e9f Mon Sep 17 00:00:00 2001 From: Joshua Ryder Date: Tue, 7 Oct 2025 10:31:39 -0400 Subject: [PATCH] Downloaded notes filename change --- server/api/notes/download/[sermonId].get.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/api/notes/download/[sermonId].get.ts b/server/api/notes/download/[sermonId].get.ts index 0580117..e0f3e11 100644 --- a/server/api/notes/download/[sermonId].get.ts +++ b/server/api/notes/download/[sermonId].get.ts @@ -111,7 +111,7 @@ ${userNotes} // Set headers for file download setResponseHeaders(event, { 'Content-Type': 'text/plain; charset=utf-8', - 'Content-Disposition': `attachment; filename="sermon-notes-${sermon.slug}.txt"` + 'Content-Disposition': `attachment; filename="${sermon.slug}-notes.txt"` }) return textContent