mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
#712 - Group multiple versions
This commit is contained in:
@@ -392,12 +392,16 @@ namespace MediaBrowser.Api.UserLibrary
|
||||
items = user == null ?
|
||||
((Folder)item).RecursiveChildren :
|
||||
((Folder)item).GetRecursiveChildren(user);
|
||||
|
||||
items = _libraryManager.ReplaceVideosWithPrimaryVersions(items);
|
||||
}
|
||||
else
|
||||
{
|
||||
items = user == null ?
|
||||
((Folder)item).Children :
|
||||
((Folder)item).GetChildren(user, true);
|
||||
|
||||
items = _libraryManager.ReplaceVideosWithPrimaryVersions(items);
|
||||
}
|
||||
|
||||
if (request.IncludeIndexContainers)
|
||||
|
||||
Reference in New Issue
Block a user