Skip to content

Commit

Permalink
FIX ManhwaFreak : new domain and filter pages (#6171)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeZeDev authored Aug 30, 2023
1 parent dd280aa commit bef0161
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/web/mjs/connectors/ManhwaFreak.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ export default class ManhwaFreak extends WordPressMangastream {
super.id = 'manhwafreak';
super.label = 'ManhwaFreak';
this.tags = [ 'manga', 'english', 'webtoon'];
this.url = 'https://manhwafreak.com';
this.url = 'https://manhwa-freak.com';
this.path = '/manga/';
this.queryMangas = 'div.lastest-serie > a';
this.queryChapters = 'div.chapter-li > a';
this.queryChaptersTitle = 'div.chapter-info > p';
}
}

async _getPages(chapter) {
return (await super._getPages(chapter)).filter(page => !page.includes('ajax-loader'));
}
}

0 comments on commit bef0161

Please sign in to comment.