aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-11-15 15:56:02 +0100
committercvium <clausvium@gmail.com>2021-11-15 15:56:02 +0100
commit4f45c526748132f3ce19fc8b357f498d8100671d (patch)
treecd8c0e067b3008724b09ce3b00a6aa1c09facb0d /Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs
parent4cb649853de816c187c1b592ca6f73637c2d1be0 (diff)
Remove ILibraryManager as a dependency in resolvers etc.
Diffstat (limited to 'Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs')
-rw-r--r--Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs b/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs
index 9599faea4..72341d9db 100644
--- a/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs
+++ b/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs
@@ -2,16 +2,16 @@
#pragma warning disable CS1591
+using Emby.Naming.Common;
using MediaBrowser.Controller.Entities;
-using MediaBrowser.Controller.Library;
namespace Emby.Server.Implementations.Library.Resolvers
{
public class GenericVideoResolver<T> : BaseVideoResolver<T>
where T : Video, new()
{
- public GenericVideoResolver(ILibraryManager libraryManager)
- : base(libraryManager)
+ public GenericVideoResolver(NamingOptions namingOptions)
+ : base(namingOptions)
{
}
}