mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #5410 from jellyfin/bond-AudioInfo
This commit is contained in:
commit
178fe43bb6
3 changed files with 4 additions and 5 deletions
|
@ -86,7 +86,7 @@ function loadRecentlyPlayed(page, parentId) {
|
|||
IncludeItemTypes: 'Audio',
|
||||
Limit: itemsPerRow(),
|
||||
Recursive: true,
|
||||
Fields: 'PrimaryImageAspectRatio,AudioInfo',
|
||||
Fields: 'PrimaryImageAspectRatio',
|
||||
Filters: 'IsPlayed',
|
||||
ParentId: parentId,
|
||||
ImageTypeLimit: 1,
|
||||
|
@ -128,7 +128,7 @@ function loadFrequentlyPlayed(page, parentId) {
|
|||
IncludeItemTypes: 'Audio',
|
||||
Limit: itemsPerRow(),
|
||||
Recursive: true,
|
||||
Fields: 'PrimaryImageAspectRatio,AudioInfo',
|
||||
Fields: 'PrimaryImageAspectRatio',
|
||||
Filters: 'IsPlayed',
|
||||
ParentId: parentId,
|
||||
ImageTypeLimit: 1,
|
||||
|
@ -399,4 +399,3 @@ export default function (view, params) {
|
|||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ export default function (view, params, tabContent) {
|
|||
SortOrder: 'Ascending',
|
||||
IncludeItemTypes: 'Audio',
|
||||
Recursive: true,
|
||||
Fields: 'AudioInfo,ParentId',
|
||||
Fields: 'ParentId',
|
||||
StartIndex: 0,
|
||||
ImageTypeLimit: 1,
|
||||
EnableImageTypes: 'Primary'
|
||||
|
|
|
@ -343,7 +343,7 @@ function getQuery(options, item) {
|
|||
SortOrder: 'Ascending',
|
||||
IncludeItemTypes: '',
|
||||
Recursive: true,
|
||||
Fields: 'AudioInfo,ParentId,PrimaryImageAspectRatio',
|
||||
Fields: 'ParentId,PrimaryImageAspectRatio',
|
||||
Limit: 100,
|
||||
StartIndex: 0,
|
||||
CollapseBoxSetItems: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue