diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-07-06 00:01:33 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-07-06 00:01:33 +0200 |
| commit | 1f99c9b90c5b791bb41ff711ad20b390f4f2268f (patch) | |
| tree | 593f7616338c6cfcff1183e06f55555025df3d33 /Emby.Naming/Video | |
| parent | a9aeb6570b7bcfee06260cf16911cc3c3be2a011 (diff) | |
Minor fixes
Diffstat (limited to 'Emby.Naming/Video')
| -rw-r--r-- | Emby.Naming/Video/VideoListResolver.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Naming/Video/VideoListResolver.cs b/Emby.Naming/Video/VideoListResolver.cs index 7da2dcd7a..ed7d511a3 100644 --- a/Emby.Naming/Video/VideoListResolver.cs +++ b/Emby.Naming/Video/VideoListResolver.cs @@ -21,7 +21,7 @@ namespace Emby.Naming.Video /// <param name="namingOptions">The naming options.</param> /// <param name="supportMultiVersion">Indication we should consider multi-versions of content.</param> /// <returns>Returns enumerable of <see cref="VideoInfo"/> which groups files together when related.</returns> - public static IEnumerable<VideoInfo> Resolve(List<FileSystemMetadata> files, NamingOptions namingOptions, bool supportMultiVersion = true) + public static IEnumerable<VideoInfo> Resolve(IEnumerable<FileSystemMetadata> files, NamingOptions namingOptions, bool supportMultiVersion = true) { var videoInfos = files .Select(i => VideoResolver.Resolve(i.FullName, i.IsDirectory, namingOptions)) |
