diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-04-18 16:12:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-18 16:12:23 -0400 |
| commit | 8ca84af79245a77b361e64271e5933311c5914ea (patch) | |
| tree | 14a1f76343e1e6821c29ecf946b646d6fa5f89b4 /Emby.Server.Core | |
| parent | f0f3ca8c181b4144cbd21fb545d0629e92a9529b (diff) | |
| parent | b51beedd942e09b51d6300aedffebc0a47f5fd50 (diff) | |
Merge pull request #2585 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Core')
| -rw-r--r-- | Emby.Server.Core/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Core/ApplicationHost.cs b/Emby.Server.Core/ApplicationHost.cs index 90fa924e6..b7309de66 100644 --- a/Emby.Server.Core/ApplicationHost.cs +++ b/Emby.Server.Core/ApplicationHost.cs @@ -564,7 +564,7 @@ namespace Emby.Server.Core StringExtensions.LocalizationManager = LocalizationManager; RegisterSingleInstance(LocalizationManager); - ITextEncoding textEncoding = new TextEncoding(FileSystemManager); + ITextEncoding textEncoding = new TextEncoding(FileSystemManager, LogManager.GetLogger("TextEncoding")); RegisterSingleInstance(textEncoding); Utilities.EncodingHelper = textEncoding; RegisterSingleInstance<IBlurayExaminer>(() => new BdInfoExaminer(FileSystemManager, textEncoding)); |
