Merge pull request #4177 from sbwalker/dev

fix #4165 - missing slash in subfolder sites
This commit is contained in:
Shaun Walker
2024-04-22 17:09:31 -04:00
committed by GitHub

View File

@ -44,9 +44,10 @@ namespace Oqtane.Shared
string querystring = "";
string fragment = "";
if (!string.IsNullOrEmpty(path)) path = "/" + path;
if (!string.IsNullOrEmpty(parameters))
{
// parse parameters
(string urlparameters, querystring, fragment) = ParseParameters(parameters);
if (!string.IsNullOrEmpty(urlparameters))
{