mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
fix: limit next up items
This commit is contained in:
@@ -72,6 +72,7 @@ export default function index() {
|
||||
await getTvShowsApi(api).getNextUp({
|
||||
userId: user?.Id,
|
||||
fields: ["MediaSourceCount"],
|
||||
limit: 20,
|
||||
})
|
||||
).data.Items) ||
|
||||
[],
|
||||
|
||||
@@ -24,7 +24,7 @@ export const NextUp: React.FC<{ seriesId: string }> = ({ seriesId }) => {
|
||||
userId: user?.Id,
|
||||
seriesId,
|
||||
fields: ["MediaSourceCount"],
|
||||
limit: 20,
|
||||
limit: 10,
|
||||
})
|
||||
).data.Items;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user