Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Fix multi-word search for ksk
Browse files Browse the repository at this point in the history
  • Loading branch information
WaltersAsh committed Jul 25, 2023
1 parent 1227a84 commit 1412d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Koushoku/Koushoku.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export class Koushoku implements SearchResultsProviding, MangaProviding, Chapter
let request;
if (query.title) {
request = App.createRequest({
url: `${DOMAIN}/browse/page/${searchPage}?s=${query.title}`,
url: `${DOMAIN}/browse/page/${searchPage}?s=${encodeURIComponent(query.title)}`,
method: 'GET'
});
} else {
Expand Down

0 comments on commit 1412d56

Please sign in to comment.