aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-01-10 00:23:44 +0900
committerGitHub <noreply@github.com>2019-01-10 00:23:44 +0900
commitf454b753f2a6e4e63d8f22ab0c354d5fa1c16e26 (patch)
treec23f66f307392bbfb9cae9d53c49b50ef28fc25e
parent9de66e9e874bd6c18b4305687ab0dd364b472c53 (diff)
separate path with comma
Co-Authored-By: dkanada <dkanada@users.noreply.github.com>
-rw-r--r--MediaBrowser.WebDashboard/Api/DashboardService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.WebDashboard/Api/DashboardService.cs b/MediaBrowser.WebDashboard/Api/DashboardService.cs
index 1c57ac27a..38a789580 100644
--- a/MediaBrowser.WebDashboard/Api/DashboardService.cs
+++ b/MediaBrowser.WebDashboard/Api/DashboardService.cs
@@ -150,7 +150,7 @@ namespace MediaBrowser.WebDashboard.Api
return _serverConfigurationManager.Configuration.DashboardSourcePath;
}
- return Path.Combine(_serverConfigurationManager.ApplicationPaths.ApplicationResourcesPath, "jellyfin-web/src");
+ return Path.Combine(_serverConfigurationManager.ApplicationPaths.ApplicationResourcesPath, "jellyfin-web", "src");
}
}