[go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert movie matching #948

Merged
merged 8 commits into from
Feb 19, 2019
Merged
Prev Previous commit
Next Next commit
Remove limit comment
  • Loading branch information
cvium committed Feb 19, 2019
commit 566646ad8b079ad09d1adb728d09a0536763beb8
1 change: 0 additions & 1 deletion Emby.Naming/Video/VideoListResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ private IEnumerable<VideoInfo> GetVideosGroupedByVersion(List<VideoInfo> videos)
{
if (videos.All(i => i.Files.Count == 1 && IsEligibleForMultiVersion(folderName, i.Files[0].Path)))
{
// Enforce the multi-version limit
if (HaveSameYear(videos))
{
var ordered = videos.OrderBy(i => i.Name).ToList();
Expand Down