KomicK
Komic
Apr 23

Smart Downloads doesn’t auto-download more than 20 books

I have a series set to auto download 25 books.The app makes this call to check for new books:POSThttp://10.0.0.10:3021/api/v1/books/list?page=0&sort=metadata.numberSort,ascRequest Body (197 bytes){  "condition": {    "allOf": [      {        "seriesId": {          "operator": "is",          "value": "0K0CWG41RKBH4"        }      },      {        "anyOf": [          {            "readStatus": {              "operator": "is",              "value": "UNREAD"            }          },          {            "readStatus": {              "operator": "is",              "value": "IN_PROGRESS"            }          }        ]      }    ]  }}However, the response only contains 20 items, since a page size was not specified for the request. As such, it returns only 20 books, not 25.Response body:  // …  "number": 0,  "numberOfElements": 20,  "pageable": {    "offset": 0,    "pageNumber": 0,    "pageSize": 20,    "paged": true,    "sort": {      "empty": false,      "sorted": true,      "unsorted": false    },    "unpaged": false  },  "size": 20,  "sort": {    "empty": false,    "sorted": true,    "unsorted": false  },  "totalElements": 176,  "totalPages": 9}Version 1.24.0(58)
CompletedCompleted

Completed
changed status toCompleted·Apr 27, 2026
Progress
changed status toIn Progress·Apr 23, 2026