Increase history pageSize from 100 to 500 to fetch more records
Build and Push Docker Image / build (push) Successful in 39s
Licence Check / Licence compatibility and copyright header verification (push) Successful in 55s
CI / Security audit (push) Successful in 1m6s
CI / Tests & coverage (push) Successful in 1m15s

Fixes issue where series beyond position 100 in history were not appearing
in recently completed section.
This commit is contained in:
2026-05-21 01:10:36 +01:00
parent 7424e70ea6
commit b9b5d7d393
2 changed files with 9 additions and 38 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ async function fetchSonarrHistory(since) {
try {
const response = await retriever.getHistory({
pageSize: 100,
pageSize: 500,
sortKey: 'date',
sortDir: 'descending',
includeSeries: true,
@@ -87,7 +87,7 @@ async function fetchRadarrHistory(since) {
try {
const response = await retriever.getHistory({
pageSize: 100,
pageSize: 500,
sortKey: 'date',
sortDir: 'descending',
includeMovie: true,