Skip to content

Commit

Permalink
fix: use unpaged param for komga series
Browse files Browse the repository at this point in the history
  • Loading branch information
oae committed Nov 26, 2022
1 parent 0756894 commit d4786d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/utils/integration/komga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const refreshMetadata = async (mangaName: string) => {
const headers = {
Authorization: `Basic ${Buffer.from(`${settings.komgaUser}:${settings.komgaPassword}`).toString('base64')}`,
};
const komgaSeriesUrl = new URL('/api/v1/series?size=1000', baseKomgaUrl).href;
const komgaSeriesUrl = new URL('/api/v1/series?unpaged=true', baseKomgaUrl).href;

const series: Series = await (
await fetch(komgaSeriesUrl, {
Expand Down

0 comments on commit d4786d2

Please sign in to comment.