Skip to content

Commit

Permalink
fix(webui): show all books when browsing series
Browse files Browse the repository at this point in the history
bug introduced by bff3e3e
  • Loading branch information
gotson committed Dec 31, 2019
1 parent 801232f commit 85ca99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion komga-webui/src/services/komga-series.service.ts
Expand Up @@ -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) {
Expand Down

0 comments on commit 85ca99d

Please sign in to comment.