diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-02-26 16:11:09 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-02-26 16:11:09 +0100 |
| commit | d95ccbacac7df20ab445e73dd9405ec1391c7a7a (patch) | |
| tree | 84f78195034601843df09a839c11f0e80dcdc35c /Jellyfin.Server/Program.cs | |
| parent | 192ec57b608a2cd1f8b337fb416b84abccd7a2a0 (diff) | |
Use IsHostingContent instead of explicitly checking ContentRoot
Diffstat (limited to 'Jellyfin.Server/Program.cs')
| -rw-r--r-- | Jellyfin.Server/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs index c4e3cd726..4048a0d03 100644 --- a/Jellyfin.Server/Program.cs +++ b/Jellyfin.Server/Program.cs @@ -268,7 +268,7 @@ namespace Jellyfin.Server .UseStartup<Startup>(); // Set the root directory for static content, if one exists - if (!string.IsNullOrEmpty(appHost.ContentRoot)) + if (appHost.IsHostingContent) { webhostBuilder.UseContentRoot(appHost.ContentRoot); } |
