Skip to content

Commit

Permalink
Fix DiskusScan: use MangaStream (#6624)
Browse files Browse the repository at this point in the history
Fixes #6622
  • Loading branch information
MikeZeDev authored and Sheepux committed Jan 2, 2024
1 parent 35891e4 commit 53b6f5f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/web/mjs/connectors/DiskusScan.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import WordPressMadara from './templates/WordPressMadara.mjs';
import WordPressMangastream from './templates/WordPressMangastream.mjs';

export default class DiskusScan extends WordPressMadara {
export default class DiskusScan extends WordPressMangastream {

constructor() {
super();
super.id = 'diskusscan';
super.label = 'Diskus Scan';
this.tags = [ 'manga', 'webtoon', 'portuguese', 'scanlation' ];
this.url = 'https://diskusscan.com';
this.path = '/manga/list-mode';
}
}
}

0 comments on commit 53b6f5f

Please sign in to comment.