diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-07-17 09:48:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-17 09:48:31 -0400 |
| commit | b026772764a705e1ef49fa9b3be053f45a293968 (patch) | |
| tree | ca0270149d3e4e4dd35fa2449a46f8ec78509a66 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 78ed8f660c1acf216cc0133bc709acf09f7a411e (diff) | |
Move external url listing to provider for plugin use (#12279)
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index c394b25bd..5bf9c4fc2 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -664,7 +664,8 @@ namespace Emby.Server.Implementations GetExports<IMetadataService>(), GetExports<IMetadataProvider>(), GetExports<IMetadataSaver>(), - GetExports<IExternalId>()); + GetExports<IExternalId>(), + GetExports<IExternalUrlProvider>()); Resolve<IMediaSourceManager>().AddParts(GetExports<IMediaSourceProvider>()); } |
