diff options
Diffstat (limited to 'MediaBrowser.Server.Mac/MacAppHost.cs')
| -rw-r--r-- | MediaBrowser.Server.Mac/MacAppHost.cs | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/MediaBrowser.Server.Mac/MacAppHost.cs b/MediaBrowser.Server.Mac/MacAppHost.cs index 342829c10..78bca03c8 100644 --- a/MediaBrowser.Server.Mac/MacAppHost.cs +++ b/MediaBrowser.Server.Mac/MacAppHost.cs @@ -2,7 +2,6 @@ using System.Collections.Generic; using System.Reflection; using Emby.Server.Core; -using Emby.Server.Core.Data; using Emby.Server.Implementations; using Emby.Server.Implementations.FFMpeg; using MediaBrowser.Model.IO; @@ -35,6 +34,14 @@ namespace MediaBrowser.Server.Mac } } + protected override bool SupportsDualModeSockets + { + get + { + return true; + } + } + protected override FFMpegInstallInfo GetFfmpegInstallInfo() { var info = new FFMpegInstallInfo(); @@ -95,11 +102,6 @@ namespace MediaBrowser.Server.Mac throw new NotImplementedException(); } - protected override IDbConnector GetDbConnector() - { - return new DbConnector(Logger); - } - protected override void ConfigureAutoRunInternal(bool autorun) { throw new NotImplementedException(); |
