mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update series queries
This commit is contained in:
parent
366395f2a3
commit
0d51412424
4 changed files with 11 additions and 11 deletions
|
@ -274,7 +274,7 @@
|
|||
var options = {
|
||||
|
||||
Limit: 20,
|
||||
Fields: "PrimaryImageAspectRatio,SyncInfo",
|
||||
Fields: "PrimaryImageAspectRatio,BasicSyncInfo",
|
||||
ImageTypeLimit: 1,
|
||||
EnableImageTypes: "Primary,Backdrop,Thumb"
|
||||
};
|
||||
|
@ -320,7 +320,7 @@
|
|||
var options = {
|
||||
|
||||
Limit: 12,
|
||||
Fields: "PrimaryImageAspectRatio,SyncInfo",
|
||||
Fields: "PrimaryImageAspectRatio,BasicSyncInfo",
|
||||
ImageTypeLimit: 1,
|
||||
EnableImageTypes: "Primary,Backdrop,Thumb",
|
||||
IncludeItemTypes: "Movie"
|
||||
|
@ -362,7 +362,7 @@
|
|||
var options = {
|
||||
|
||||
Limit: 12,
|
||||
Fields: "PrimaryImageAspectRatio,SyncInfo",
|
||||
Fields: "PrimaryImageAspectRatio,BasicSyncInfo",
|
||||
ImageTypeLimit: 1,
|
||||
EnableImageTypes: "Primary,Backdrop,Thumb",
|
||||
IncludeItemTypes: "Episode"
|
||||
|
@ -407,7 +407,7 @@
|
|||
var options = {
|
||||
|
||||
Limit: screenWidth >= 2400 ? 10 : (screenWidth >= 1600 ? 10 : (screenWidth >= 1440 ? 8 : (screenWidth >= 800 ? 7 : 6))),
|
||||
Fields: "PrimaryImageAspectRatio,SyncInfo",
|
||||
Fields: "PrimaryImageAspectRatio,BasicSyncInfo",
|
||||
Filters: "IsUnplayed",
|
||||
UserId: userId
|
||||
};
|
||||
|
@ -505,7 +505,7 @@
|
|||
Filters: "IsResumable",
|
||||
Limit: screenWidth >= 1920 ? 8 : (screenWidth >= 1600 ? 8 : (screenWidth >= 1200 ? 9 : 6)),
|
||||
Recursive: true,
|
||||
Fields: "PrimaryImageAspectRatio,SyncInfo",
|
||||
Fields: "PrimaryImageAspectRatio,BasicSyncInfo",
|
||||
CollapseBoxSetItems: false,
|
||||
ExcludeLocationTypes: "Virtual",
|
||||
ImageTypeLimit: 1,
|
||||
|
@ -551,7 +551,7 @@
|
|||
var query = {
|
||||
|
||||
Limit: 20,
|
||||
Fields: "PrimaryImageAspectRatio,SeriesInfo,DateCreated,SyncInfo",
|
||||
Fields: "PrimaryImageAspectRatio,SeriesInfo,DateCreated,BasicSyncInfo",
|
||||
UserId: userId,
|
||||
ImageTypeLimit: 1,
|
||||
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
|
||||
|
@ -626,7 +626,7 @@
|
|||
var options = {
|
||||
|
||||
Limit: screenWidth >= 1600 ? 10 : (screenWidth >= 1440 ? 5 : (screenWidth >= 800 ? 6 : 6)),
|
||||
Fields: "PrimaryImageAspectRatio,SyncInfo",
|
||||
Fields: "PrimaryImageAspectRatio,BasicSyncInfo",
|
||||
Filters: "IsUnplayed",
|
||||
UserId: Dashboard.getCurrentUserId(),
|
||||
ChannelIds: channel.Id
|
||||
|
@ -673,7 +673,7 @@
|
|||
|
||||
userId: userId,
|
||||
limit: 5,
|
||||
Fields: "PrimaryImageAspectRatio,SyncInfo",
|
||||
Fields: "PrimaryImageAspectRatio,BasicSyncInfo",
|
||||
IsInProgress: false,
|
||||
EnableTotalRecordCount: false
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue