diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-06-21 19:41:11 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-21 19:41:11 +0000 |
| commit | 743032f1e12fb964802b28de21aec977b556b786 (patch) | |
| tree | 23094078d95eabd91171ee45e435e0412ef56faf /Jellyfin.Server/Program.cs | |
| parent | a6664b8335fd8666b09114624cb5f34f9f44716f (diff) | |
| parent | 4eb94b8fb18ef2fdddfb7a7fe1cde484e6c6ff06 (diff) | |
Merge pull request #3393 from Ullmie02/api-dashboard
Move DashboardController to Jellyfin.Api
Diffstat (limited to 'Jellyfin.Server/Program.cs')
| -rw-r--r-- | Jellyfin.Server/Program.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs index 3971a08e9..dfc7bbbb1 100644 --- a/Jellyfin.Server/Program.cs +++ b/Jellyfin.Server/Program.cs @@ -14,9 +14,9 @@ using Emby.Server.Implementations; using Emby.Server.Implementations.HttpServer; using Emby.Server.Implementations.IO; using Emby.Server.Implementations.Networking; +using Jellyfin.Api.Controllers; using MediaBrowser.Common.Configuration; using MediaBrowser.Controller.Extensions; -using MediaBrowser.WebDashboard.Api; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Server.Kestrel.Core; using Microsoft.Extensions.Configuration; @@ -172,7 +172,7 @@ namespace Jellyfin.Server // If hosting the web client, validate the client content path if (startupConfig.HostWebClient()) { - string webContentPath = DashboardService.GetDashboardUIPath(startupConfig, appHost.ServerConfigurationManager); + string? webContentPath = DashboardController.GetWebClientUiPath(startupConfig, appHost.ServerConfigurationManager); if (!Directory.Exists(webContentPath) || Directory.GetFiles(webContentPath).Length == 0) { throw new InvalidOperationException( |
