From 58b9e5af79be32fdc5c7ca1c5542206fdea85257 Mon Sep 17 00:00:00 2001 From: Claus Vium Date: Sat, 1 Jan 2022 14:52:54 +0100 Subject: [PATCH] Update Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs Co-authored-by: Joe Rogers <1337joe@users.noreply.github.com> --- .../Library/Resolvers/GenericVideoResolver.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs b/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs index 27d7811488..9b68386602 100644 --- a/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs +++ b/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs @@ -1,15 +1,21 @@ #nullable disable -#pragma warning disable CS1591 - using Emby.Naming.Common; using MediaBrowser.Controller.Entities; namespace Emby.Server.Implementations.Library.Resolvers { + /// + /// Resolves a Path into a Video or Video subclass. + /// + /// The type of item to resolve. public class GenericVideoResolver : BaseVideoResolver where T : Video, new() { + /// + /// Initializes a new instance of the class. + /// + /// The naming options. public GenericVideoResolver(NamingOptions namingOptions) : base(namingOptions) {