Skip to content

Commit

Permalink
Domains updates (#7328)
Browse files Browse the repository at this point in the history
* Manhwaland: change domain

* Kiryuu: change domain

* KoMBatch change domain
  • Loading branch information
MikeZeDev authored Aug 15, 2024
1 parent 306df4e commit e40bc3a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/web/mjs/connectors/Kiryuu.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class Kiryuu extends WordPressMangastream {
super.id = 'kiryuu';
super.label = 'Kiryuu';
this.tags = [ 'manga', 'indonesian' ];
this.url = 'https://kiryuu.id';
this.url = 'https://kiryuu.org';
this.path = '/manga/list-mode/';
}

Expand All @@ -21,4 +21,4 @@ export default class Kiryuu extends WordPressMangastream {
let pageList = await super._getPages(chapter);
return pageList.filter(link => !fakeLinkPatterns.some(pattern => pattern.test(link)));
}
}
}
4 changes: 2 additions & 2 deletions src/web/mjs/connectors/KoMBatch.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export default class KoMBatch extends WordPressMangastream {
super.id = 'kombatch';
super.label = 'KoMBatch';
this.tags = [ 'manga', 'indonesian' ];
this.url = 'https://kombatch.com';
this.url = 'https://kombatch.cc';
this.path = '/manga/list-mode/';
}

}
}
6 changes: 3 additions & 3 deletions src/web/mjs/connectors/Manhwaland.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ export default class Manhwaland extends WordPressMangastream {
super.id = 'manhwaland';
super.label = 'Manhwaland';
this.tags = [ 'webtoon', 'hentai', 'indonesian' ];
this.url = 'https://manhwaland.org';
this.path = '/series/list-mode/';
this.url = 'https://www.manhwaland.ink';
this.path = '/manga/list-mode/';
}

async _getMangaFromURI(uri) {
const manga = await super._getMangaFromURI(uri);
manga.title = manga.title.replace(/^(manga|manhwa|manhua)/i, '').trim();
return manga;
}
}
}

0 comments on commit e40bc3a

Please sign in to comment.