Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
See: #1546
  • Loading branch information
dteviot committed Oct 13, 2024
1 parent 8d00b27 commit 9ed8de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/js/parsers/RaeitranslationsParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class RaeitranslationsParser extends Parser{

makeRestUrl(chapterUrl) {
let path = new URL(chapterUrl).pathname.split("/");
let restUrl = new URL("https://api.raeitranslations.com/api/chapters/");
let restUrl = new URL("https://api.raeitranslations.com/api/chapters/single");
restUrl.searchParams.set("id", path[1]);
restUrl.searchParams.set("num", path[2]);
return restUrl;
Expand Down

0 comments on commit 9ed8de5

Please sign in to comment.