aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorJoshua Boniface <joshua@boniface.me>2019-03-10 16:20:46 -0400
committerJoshua Boniface <joshua@boniface.me>2019-03-10 16:20:46 -0400
commit25deca95793581df85dab8c454d53a1d07a6ab53 (patch)
treefd6eba8a14771570846a0d58b0be91375b7d495f /Emby.Server.Implementations
parent93d15cd96972588bbbc29a9398c9d4b050d30411 (diff)
Make use of WebPath
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index ae5460674..05ede0dda 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -621,7 +621,7 @@ namespace Emby.Server.Implementations
string contentRoot = ServerConfigurationManager.Configuration.DashboardSourcePath;
if (string.IsNullOrEmpty(contentRoot))
{
- contentRoot = Path.Combine(ServerConfigurationManager.ApplicationPaths.ApplicationResourcesPath, "jellyfin-web", "src");
+ contentRoot = Path.Combine(ServerConfigurationManager.ApplicationPaths,WebPath, "src");
}
var host = new WebHostBuilder()