aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/EntryPoints
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-15 13:00:14 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-15 13:00:14 +0100
commit4102e3afd0a9df29faea598769db2212a00d64ce (patch)
treee610ae5f2e6236cefafe318ba65396fd42cef97d /Emby.Server.Implementations/EntryPoints
parent547f248a620c2de61d72703590f9c5c4720ba6e2 (diff)
Rename IsNoWebContent to NoWebContent
Diffstat (limited to 'Emby.Server.Implementations/EntryPoints')
-rw-r--r--Emby.Server.Implementations/EntryPoints/StartupWizard.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/StartupWizard.cs b/Emby.Server.Implementations/EntryPoints/StartupWizard.cs
index 7c2b3cd5f..bc6b8c956 100644
--- a/Emby.Server.Implementations/EntryPoints/StartupWizard.cs
+++ b/Emby.Server.Implementations/EntryPoints/StartupWizard.cs
@@ -38,7 +38,7 @@ namespace Emby.Server.Implementations.EntryPoints
return Task.CompletedTask;
}
- if (_appHost.Resolve<IConfiguration>().IsNoWebContent())
+ if (_appHost.Resolve<IConfiguration>().NoWebContent())
{
BrowserLauncher.OpenSwaggerPage(_appHost);
}