mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixes #144 - Marking a boxset as viewed doesn't mark the individual titles of the set as viewed
This commit is contained in:
parent
68844b8f7e
commit
69fb2cdfba
4 changed files with 6 additions and 4 deletions
|
@ -74,7 +74,8 @@
|
||||||
ApiClient.getItems(Dashboard.getCurrentUserId(), {
|
ApiClient.getItems(Dashboard.getCurrentUserId(), {
|
||||||
|
|
||||||
ParentId: getParameterByName('id'),
|
ParentId: getParameterByName('id'),
|
||||||
SortBy: "SortName"
|
SortBy: "SortName",
|
||||||
|
Fields: "PrimaryImageAspectRatio,ItemCounts,DisplayMediaType,DateCreated,UserData"
|
||||||
|
|
||||||
}).done(function (result) {
|
}).done(function (result) {
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
SortOrder: "Ascending",
|
SortOrder: "Ascending",
|
||||||
IncludeItemTypes: "BoxSet",
|
IncludeItemTypes: "BoxSet",
|
||||||
Recursive: true,
|
Recursive: true,
|
||||||
Fields: "PrimaryImageAspectRatio,ItemCounts,ItemCounts,DateCreated,UserData",
|
Fields: "PrimaryImageAspectRatio,DisplayMediaType,ItemCounts,DateCreated,UserData",
|
||||||
Limit: LibraryBrowser.getDetaultPageSize(),
|
Limit: LibraryBrowser.getDetaultPageSize(),
|
||||||
StartIndex: 0
|
StartIndex: 0
|
||||||
};
|
};
|
||||||
|
|
|
@ -90,7 +90,8 @@
|
||||||
|
|
||||||
var html = LibraryBrowser.getPosterDetailViewHtml({
|
var html = LibraryBrowser.getPosterDetailViewHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
useAverageAspectRatio: true
|
useAverageAspectRatio: true,
|
||||||
|
Fields: "PrimaryImageAspectRatio,ItemCounts,DisplayMediaType,DateCreated,UserData"
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#seasonsContent', page).html(html);
|
$('#seasonsContent', page).html(html);
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
SortOrder: "Ascending",
|
SortOrder: "Ascending",
|
||||||
IncludeItemTypes: "Series",
|
IncludeItemTypes: "Series",
|
||||||
Recursive: true,
|
Recursive: true,
|
||||||
Fields: "PrimaryImageAspectRatio,SeriesInfo,ItemCounts,DateCreated,UserData",
|
Fields: "PrimaryImageAspectRatio,DisplayMediaType,SeriesInfo,ItemCounts,DateCreated,UserData",
|
||||||
Limit: LibraryBrowser.getDetaultPageSize(),
|
Limit: LibraryBrowser.getDetaultPageSize(),
|
||||||
StartIndex: 0
|
StartIndex: 0
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue