We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e553eae commit 13c3135Copy full SHA for 13c3135
src/web/mjs/connectors/ShonenJumpPlus.mjs
@@ -11,7 +11,7 @@ export default class ShonenJumpPlus extends CoreView {
11
}
12
13
async _getChapters(manga) {
14
- if(/^\/magazine\/\d+$/.test(manga.id)) {
+ if(/^\/(magazine|volume)\/\d+$/.test(manga.id)) {
15
let request = new Request(new URL(this.url+manga.id), this.requestOptions);
16
let data = await this.fetchDOM(request, '.episode-header-title');
17
return [{
@@ -22,4 +22,4 @@ export default class ShonenJumpPlus extends CoreView {
22
return super._getChapters(manga);
23
24
25
-}
+}
0 commit comments