mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed themoviedb search returning no results
This commit is contained in:
parent
e9a747ed77
commit
0b736d68b5
7 changed files with 33 additions and 44 deletions
|
@ -2,11 +2,13 @@
|
|||
|
||||
$(document).on('pagebeforeshow', "#tvNextUpPage", function () {
|
||||
|
||||
var screenWidth = $(window).width();
|
||||
|
||||
var page = this;
|
||||
|
||||
var options = {
|
||||
|
||||
Limit: 24,
|
||||
Limit: screenWidth >= 1920 ? 25 : 24,
|
||||
Fields: "PrimaryImageAspectRatio,SeriesInfo,DateCreated",
|
||||
UserId: Dashboard.getCurrentUserId(),
|
||||
ExcludeLocationTypes: "Virtual"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue