Skip to content

Commit

Permalink
Websites maintenance : AlliedFansub & Nivera
Browse files Browse the repository at this point in the history
* AlliedFansub: change domain and template Fixes #6793
* Nivera : change domain Fixes #6792
  • Loading branch information
MikeZeDev committed Feb 18, 2024
1 parent 7eee17d commit 28c729b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/web/mjs/connectors/AlliedFansub.mjs
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import WordPressMangastream from './templates/WordPressMangastream.mjs';
import WordPressMadara from './templates/WordPressMadara.mjs';

export default class AlliedFansub extends WordPressMangastream {
export default class AlliedFansub extends WordPressMadara {

constructor() {
super();
super.id = 'alliedfansub';
super.label = 'Allied Fansub';
this.tags = [ 'webtoon', 'turkish', 'scanlation' ];
this.url = 'https://alliedfansub.online';
this.path = '/manga/list-mode/';
this.url = 'https://alliedfansub.net';
this.requestOptions.headers.set('x-referer', this.url);
}
}
2 changes: 1 addition & 1 deletion src/web/mjs/connectors/NiveraFansub.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class NiveraFansub extends WordPressMadara {
super.id = 'niverafansub';
super.label = 'Nivera Fansub';
this.tags = [ 'webtoon', 'turkish', 'scanlation' ];
this.url = 'https://niverafansub.com';
this.url = 'https://niverafansub.co';
this.requestOptions.headers.set('x-referer', this.url);
}
}

0 comments on commit 28c729b

Please sign in to comment.