fix #1359 - Image bug in src attribute - image is not displayed - caused by multi-tenancy refactoring

This commit is contained in:
Shaun Walker
2021-05-19 13:32:34 -04:00
parent 6f981e0928
commit 0b6efdbc57
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
if (htmltext != null)
{
content = htmltext.Content;
content = content.Replace(Constants.ContentUrl, "/" + PageState.Alias.Path + Constants.ContentUrl);
content = content.Replace(Constants.ContentUrl, Utilities.TenantUrl(PageState.Alias, Constants.ContentUrl));
}
}
catch (Exception ex)