mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-28 13:21:19 +00:00
update windows ffmpeg
This commit is contained in:
parent
fb25ac7c08
commit
99084edabe
31 changed files with 330 additions and 101 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue