Backslash fix.

This commit is contained in:
Pavel Veselý 2022-09-06 09:07:43 +02:00
parent 64c5d9a09f
commit d40c1d9b31

View File

@ -503,7 +503,7 @@ namespace Oqtane.Controllers
HttpContext.Response.StatusCode = (int)HttpStatusCode.Forbidden;
}
string errorPath = Path.Combine(GetFolderPath("wwwroot\\images"), "error.png");
string errorPath = Path.Combine(GetFolderPath("wwwroot/images"), "error.png");
return System.IO.File.Exists(errorPath) ? PhysicalFile(errorPath, MimeUtilities.GetMimeType(errorPath)) : null;
}
@ -568,7 +568,7 @@ namespace Oqtane.Controllers
HttpContext.Response.StatusCode = (int)HttpStatusCode.Forbidden;
}
string errorPath = Path.Combine(GetFolderPath("wwwroot\\images"), "error.png");
string errorPath = Path.Combine(GetFolderPath("wwwroot/images"), "error.png");
return System.IO.File.Exists(errorPath) ? PhysicalFile(errorPath, MimeUtilities.GetMimeType(errorPath)) : null;
}