mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-07 05:02:25 +00:00
update windows ffmpeg
This commit is contained in:
@@ -49,10 +49,10 @@ namespace MediaBrowser.Server.Implementations.Sorting
|
||||
|
||||
if (folder != null)
|
||||
{
|
||||
return folder.GetRecursiveChildren(User, i => !i.IsFolder)
|
||||
.Select(i => i.DateCreated)
|
||||
.OrderByDescending(i => i)
|
||||
.FirstOrDefault();
|
||||
if (folder.DateLastMediaAdded.HasValue)
|
||||
{
|
||||
return folder.DateLastMediaAdded.Value;
|
||||
}
|
||||
}
|
||||
|
||||
return x.DateCreated;
|
||||
|
||||
Reference in New Issue
Block a user