From d43af2db57dd3dd63226352fca72e8f2610ad851 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Tue, 14 Oct 2025 19:51:15 -0500 Subject: [PATCH] pass options to project download to allow folders beginning with a dot --- apps/server/src/api-data/db/db.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/api-data/db/db.controller.ts b/apps/server/src/api-data/db/db.controller.ts index 8bdc41ae1..5e9e4a40f 100644 --- a/apps/server/src/api-data/db/db.controller.ts +++ b/apps/server/src/api-data/db/db.controller.ts @@ -109,7 +109,7 @@ export async function projectDownload(req: Request, res: Response) { return; } - res.download(pathToFile, filename, (error) => { + res.download(pathToFile, filename, { dotfiles: 'allow' }, (error) => { if (error) { const message = getErrorMessage(error); res.status(500).send({ message });