We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb374d commit 2832739Copy full SHA for 2832739
src/Api/ListBooks.php
@@ -36,7 +36,7 @@ protected function execute()
36
return app(BookDirectoryClient::class)
37
->setParam(BookDirectoryClient::SEARCH_AVAILABILITY, $this->withUnavailable ? 'all' : 'available')
38
->setParam(BookDirectoryClient::SEARCH_PAGE, $this->page)
39
- ->setParam(BookDirectoryClient::SEARCH_TOTAL_COUNT, $this->count)
+ ->setParam(BookDirectoryClient::SEARCH_TOTAL_COUNT, $this->count + 1) // add one because these dumb*ss at Titelive count from one I guess ?
40
->setParam(BookDirectoryClient::CATEGORY_CODES, $this->categoryCode)
41
->doSearch(groupEditions: true);
42
}
0 commit comments