diff options
Diffstat (limited to 'Project-Unite/Controllers')
| -rw-r--r-- | Project-Unite/Controllers/DeveloperController.cs | 2 | ||||
| -rw-r--r-- | Project-Unite/Controllers/DownloadController.cs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Project-Unite/Controllers/DeveloperController.cs b/Project-Unite/Controllers/DeveloperController.cs index f1b3868..03db75f 100644 --- a/Project-Unite/Controllers/DeveloperController.cs +++ b/Project-Unite/Controllers/DeveloperController.cs @@ -90,7 +90,7 @@ namespace Project_Unite.Controllers string file_name_d = model.Download.FileName.ToLower(); foreach(var c in file_name_d.ToCharArray()) { - if (!ApprovedIdChars.Contains(c)) + if (!ApprovedIdChars.Contains(c) && c != '.') file_name_d = file_name_d.Replace(c, '_'); } download_dir += file_name_d; diff --git a/Project-Unite/Controllers/DownloadController.cs b/Project-Unite/Controllers/DownloadController.cs index 5847aed..b429d71 100644 --- a/Project-Unite/Controllers/DownloadController.cs +++ b/Project-Unite/Controllers/DownloadController.cs @@ -16,6 +16,7 @@ namespace Project_Unite.Controllers return View(db.Downloads); } + // GET: http://getshiftos.ml/Download/ViewRelease/shiftos_0.0.7_alpha_4.1_0 public ActionResult ViewRelease(string id) { var db = new ApplicationDbContext(); |
