Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Seyden committed Mar 2, 2024
1 parent 9fdef2f commit 3e8869d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MangaStream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ export abstract class MangaStream implements ContentSource, PageLinkResolver, Im

urlBuilder = urlBuilder
.addQueryParameter('genre', !this.supportsTagExclusion ? query.filters?.genres : undefined)
.addQueryParameter('genre', getFilterTagsBySection(excludedGenres?.idincluded, true, this.supportsTagExclusion))
.addQueryParameter('genre', getFilterTagsBySection(excludedGenres?.included, true, this.supportsTagExclusion))
.addQueryParameter('genre', getFilterTagsBySection(excludedGenres?.excluded, false, this.supportsTagExclusion))
.addQueryParameter('status', getSelectValue(query?.filters?.status))
.addQueryParameter('type', getSelectValue(query?.filters?.type))
Expand Down

0 comments on commit 3e8869d

Please sign in to comment.