Revert "Merge pull request #924 from cvium/fix_movie_matching"

This reverts commit f274d024ce, reversing
changes made to 4b4399fba6.
pull/948/head
Claus Vium 6 years ago
parent c79324154f
commit 5181427234

@ -175,11 +175,15 @@ namespace Emby.Naming.Video
return videos;
}
return videos.GroupBy(v => new {v.Name, v.Year}).Select(group => new VideoInfo
var folderName = Path.GetFileName(Path.GetDirectoryName(videos[0].Files[0].Path));
if (!string.IsNullOrEmpty(folderName) && folderName.Length > 1)
{
var ordered = videos.OrderBy(i => i.Name);
return ordered.GroupBy(v => new {v.Name, v.Year}).Select(group => new VideoInfo
{
// Because of the grouping, we can grab the information from the first movie and make it primary
// The remaining movie matches are 'alternate versions'
Name = group.First().Name,
Name = folderName,
Year = group.First().Year,
Files = group.First().Files,
AlternateVersions = group.Skip(1).Select(i => i.Files[0]).ToList(),
@ -187,6 +191,9 @@ namespace Emby.Naming.Video
});
}
return videos;
}
private List<VideoFileInfo> GetExtras(IEnumerable<VideoFileInfo> remainingFiles, List<string> baseNames)
{
foreach (var name in baseNames.ToList())

Loading…
Cancel
Save