Merge pull request #3739 from sbwalker/dev

temporary hack to allow Static rendering to (sort of) work - this will need to be removed later
This commit is contained in:
Shaun Walker 2024-02-06 11:28:59 -05:00 committed by GitHub
commit 509ff7e833
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -69,11 +69,13 @@
SiteState.AuthorizationToken = AuthorizationToken;
SiteState.IsPrerendering = (HttpContext != null) ? true : false;
_installation = await InstallationService.IsInstalled();
if (_installation.Alias != null)
{
SiteState.Alias = _installation.Alias;
}
_installation = new Installation { Success = true };
SiteState.Alias = new Alias { AliasId = 1, SiteId = 1, TenantId = 1, Name = "localhost:44357", IsDefault = true, BaseUrl = "", Protocol = "http://" };
// _installation = await InstallationService.IsInstalled();
// if (_installation.Alias != null)
// {
// SiteState.Alias = _installation.Alias;
// }
_initialized = true;
}