Fix resolved type for Trailers

This commit is contained in:
Joe Rogers
2021-12-22 22:37:49 +01:00
committed by Cody Robibero (Rebase PR Action)
parent 60e75f7b70
commit c0ab54f0bd
4 changed files with 65 additions and 23 deletions

View File

@@ -1,18 +0,0 @@
#nullable disable
#pragma warning disable CS1591
using Emby.Naming.Common;
using MediaBrowser.Controller.Entities;
namespace Emby.Server.Implementations.Library.Resolvers
{
public class GenericVideoResolver<T> : BaseVideoResolver<T>
where T : Video, new()
{
public GenericVideoResolver(NamingOptions namingOptions)
: base(namingOptions)
{
}
}
}