aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/CoreAppHost.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2019-06-21 23:33:37 -0700
committerGitHub <noreply@github.com>2019-06-21 23:33:37 -0700
commit1b2621cd30eb22ce6fbc8b94175ce8f5fce0330f (patch)
treeef176427d50a1796aebbce944dd4d62da5f9bc44 /Jellyfin.Server/CoreAppHost.cs
parentdbc2cda9d41eb9dca6f635f3498c14a4e09a84e6 (diff)
parent253e72f66720c2f590c443f8347e2187f4f36db0 (diff)
Merge pull request #1454 from Bond-009/webresource
Simplify file serving code
Diffstat (limited to 'Jellyfin.Server/CoreAppHost.cs')
-rw-r--r--Jellyfin.Server/CoreAppHost.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Jellyfin.Server/CoreAppHost.cs b/Jellyfin.Server/CoreAppHost.cs
index 8e6ed7a7e..b9b0cc382 100644
--- a/Jellyfin.Server/CoreAppHost.cs
+++ b/Jellyfin.Server/CoreAppHost.cs
@@ -1,7 +1,8 @@
using System.Collections.Generic;
using System.Reflection;
using Emby.Server.Implementations;
-using Emby.Server.Implementations.HttpServer;
+using MediaBrowser.Common.Net;
+using MediaBrowser.Controller.Drawing;
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
@@ -15,8 +16,8 @@ namespace Jellyfin.Server
ILoggerFactory loggerFactory,
StartupOptions options,
IFileSystem fileSystem,
- MediaBrowser.Controller.Drawing.IImageEncoder imageEncoder,
- MediaBrowser.Common.Net.INetworkManager networkManager,
+ IImageEncoder imageEncoder,
+ INetworkManager networkManager,
IConfiguration configuration)
: base(
applicationPaths,