update html preparation
This commit is contained in:
parent
9a0c5e3bda
commit
ead2afcca0
|
@ -151,10 +151,13 @@ namespace MediaBrowser.WebDashboard.Api
|
||||||
if (index != -1)
|
if (index != -1)
|
||||||
{
|
{
|
||||||
html = html.Substring(index);
|
html = html.Substring(index);
|
||||||
|
|
||||||
|
html = html.Substring(html.IndexOf('>') + 1);
|
||||||
|
|
||||||
index = html.IndexOf("</body>", StringComparison.OrdinalIgnoreCase);
|
index = html.IndexOf("</body>", StringComparison.OrdinalIgnoreCase);
|
||||||
if (index != -1)
|
if (index != -1)
|
||||||
{
|
{
|
||||||
html = html.Substring(0, index+7);
|
html = html.Substring(0, index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var mainFile = _fileSystem.ReadAllText(GetDashboardResourcePath("index.html"));
|
var mainFile = _fileSystem.ReadAllText(GetDashboardResourcePath("index.html"));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user