Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Voidscans : Change domain #7139

Merged
merged 4 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/web/mjs/connectors/InfernalVoidScans.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class InfernalVoidScans extends WordPressMangastream {
super.id = 'infernalvoidscans';
super.label = 'InfernalVoidScans';
this.tags = [ 'webtoon', 'scanlation', 'english' ];
this.url = 'https://void-scans.com';
this.url = 'https://hivescans.com';
this.path = '/manga/list-mode/';
this.requestOptions.headers.set('x-referer', this.url);
}
Expand Down
16 changes: 14 additions & 2 deletions src/web/mjs/connectors/NtsVoidScans.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
import WordPressMadara from './templates/WordPressMadara.mjs';
//dead?
export default class NtsVoidScans extends WordPressMadara {
MikeZeDev marked this conversation as resolved.
Show resolved Hide resolved

constructor() {
super();
super.id = 'ntsvoidscans';
super.label = 'Void Scans';
super.label = 'Void Scans ';
MikeZeDev marked this conversation as resolved.
Show resolved Hide resolved
this.tags = [ 'manga', 'webtoon', 'english' ];
this.url = 'https://voidscans.com';
}

async getMangas() {
throw new Error('This website is dead. Use InfernalVoidScans connector instead.');
}

async getChapters() {
throw new Error('This website is dead. Use InfernalVoidScans connector instead.');
}

async getPages() {
throw new Error('This website is dead. Use InfernalVoidScans connector instead.');
}

}
Loading