I see an IIS bug.

This commit is contained in:
Michael 2017-04-05 21:49:07 -04:00
parent aa29df784e
commit 2111b90277
2 changed files with 2 additions and 1 deletions

View file

@ -90,7 +90,7 @@ public ActionResult AddRelease(PostDownloadViewModel model)
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;

View file

@ -16,6 +16,7 @@ public ActionResult Index()
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();