From a533e9ad8c3c37799868a9cb4f9e126b1bb4eafb Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Wed, 29 Nov 2023 17:08:33 -0600 Subject: [PATCH] Fix redistributable downloading --- LANCommander/Controllers/DownloadController.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/LANCommander/Controllers/DownloadController.cs b/LANCommander/Controllers/DownloadController.cs index d328d6d..e1adb07 100644 --- a/LANCommander/Controllers/DownloadController.cs +++ b/LANCommander/Controllers/DownloadController.cs @@ -31,7 +31,14 @@ namespace LANCommander.Controllers if (!System.IO.File.Exists(filename)) return NotFound(); - return File(new FileStream(filename, FileMode.Open, FileAccess.Read, FileShare.Read), "application/octet-stream", $"{archive.Game.Title.SanitizeFilename()}.zip"); + string name = ""; + + if (archive.GameId != null && archive.GameId != Guid.Empty) + name = $"{archive.Game.Title.SanitizeFilename()}.zip"; + else if (archive.RedistributableId != null && archive.RedistributableId != Guid.Empty) + name = $"{archive.Redistributable.Name.SanitizeFilename()}.zip"; + + return File(new FileStream(filename, FileMode.Open, FileAccess.Read, FileShare.Read), "application/octet-stream", name); } } }