diff --git a/display/web/main.go b/display/web/main.go index 6b8b037..4b5fa7a 100644 --- a/display/web/main.go +++ b/display/web/main.go @@ -194,7 +194,7 @@ func downloadFileRoute(ctx echo.Context) error { slog.Info("Serving file for download", "path", fullPath) - return ctx.File(fullPath) + return ctx.Attachment(fullPath, filepath.Base(fullPath)) } func openFileRoute(ctx echo.Context) error {