diff options
| author | Patrick Barron <barronpm@gmail.com> | 2023-10-26 10:03:04 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2023-11-09 16:16:28 -0500 |
| commit | 2b742be38e08afea1a1a417c258ac9469dd48a3b (patch) | |
| tree | 7f8480d3c378dfc74db40ceb5cc9f675cdfb8554 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 44b771bfb4b6412360b18c80621c90902c0a43a7 (diff) | |
Use IHostedService for DLNA
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index c9bf7f085..a1f1cd649 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -866,7 +866,7 @@ namespace Emby.Server.Implementations yield return typeof(MediaBrowser.MediaEncoding.Encoder.MediaEncoder).Assembly; // Dlna - yield return typeof(DlnaEntryPoint).Assembly; + yield return typeof(DlnaHost).Assembly; // Local metadata yield return typeof(BoxSetXmlSaver).Assembly; |
