mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
@@ -179,7 +179,7 @@ namespace Emby.Naming.Video
|
|||||||
|
|
||||||
if (!string.IsNullOrEmpty(folderName) && folderName.Length > 1)
|
if (!string.IsNullOrEmpty(folderName) && folderName.Length > 1)
|
||||||
{
|
{
|
||||||
var ordered = videos.OrderBy(i => i.Name);
|
var ordered = videos.OrderBy(i => i.Name).ToList();
|
||||||
|
|
||||||
return ordered.GroupBy(v => new {v.Name, v.Year}).Select(group => new VideoInfo
|
return ordered.GroupBy(v => new {v.Name, v.Year}).Select(group => new VideoInfo
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user