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)
{