Skip to content

Commit

Permalink
Miauscan: change domain
Browse files Browse the repository at this point in the history
Fixes #7519
  • Loading branch information
MikeZeDev authored Oct 25, 2024
1 parent 0afb023 commit cf80149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/web/mjs/connectors/Miauscan.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class MiauScan extends WordPressMangastream {
super.id = 'miauscan';
super.label = 'MiauScan';
this.tags = [ 'manga', 'spanish', 'portuguese', 'scanlation' ];
this.url = 'https://miaucomics.org';
this.url = 'https://zonamiau.com';
this.path = '/manga/list-mode/';

this.novelContainer = 'div.entry-content';
Expand All @@ -22,7 +22,7 @@ export default class MiauScan extends WordPressMangastream {
const data = await this.fetchDOM(request, 'div#readerarea.rdminimal');
//reader for novel have this class. When its a manga there is no class at all so we call super.
if (data.length == 0) {
return await super._getPages(chapter).filter(image => !/dis2\.jpg/.test(image));
return (await super._getPages(chapter)).filter(image => !/dis2\.jpg/.test(image));
}
const darkmode = Engine.Settings.NovelColorProfile();
const script = `
Expand Down

0 comments on commit cf80149

Please sign in to comment.