Skip to content

Commit

Permalink
Fix ManhwaFreak: change fomain and filters (#6851)
Browse files Browse the repository at this point in the history
Fixes #6849
  • Loading branch information
MikeZeDev authored and ronny1982 committed Jul 27, 2024
1 parent 7eaf7fd commit b1b7b57
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/web/mjs/connectors/ManhwaFreak.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ export default class ManhwaFreak extends WordPressMangastream {
super.id = 'manhwafreak';
super.label = 'ManhwaFreak';
this.tags = [ 'manga', 'english', 'webtoon'];
this.url = 'https://manhwa-freak.com';
this.url = 'https://freakcomic.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'));
return (await super._getPages(chapter))
.filter(page => !page.includes('ajax-loader') && !page.endsWith('/100.5.gif'));
}
}

0 comments on commit b1b7b57

Please sign in to comment.