mirror of
https://github.com/gotson/komga.git
synced 2025-12-21 07:56:57 +01:00
fix(webui): show all books when browsing series
bug introduced by bff3e3e549
This commit is contained in:
parent
801232f444
commit
85ca99d49a
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ export default class KomgaSeriesService {
|
|||
async getBooks (seriesId: number, pageRequest?: PageRequest): Promise<Page<BookDto>> {
|
||||
try {
|
||||
return (await this.http.get(`${API_SERIES}/${seriesId}/books`, {
|
||||
params: { ...pageRequest },
|
||||
params: { ...pageRequest, ready_only: false },
|
||||
paramsSerializer: params => qs.stringify(params, { indices: false })
|
||||
})).data
|
||||
} catch (e) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue