Skip to content

Commit

Permalink
Fix Saikaiscan : change domain (#6963)
Browse files Browse the repository at this point in the history
Fixes #6620
  • Loading branch information
MikeZeDev authored Apr 15, 2024
1 parent f9aaca9 commit 32823e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/web/mjs/connectors/Saikaiscan.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ export default class SaikaiScan extends Connector {
super.id = 'saikaiscan';
super.label = 'Saikaiscan';
this.tags = [ 'manga', 'portuguese', 'webtoon', 'novel' ];
this.url = 'https://saikaiscan.com.br';
this.api = 'https://api.saikai.com.br/api/stories';
this.imagesurl = 'https://s3-alpha.saikai.com.br';
this.url = 'https://saikaiscans.net';
this.api = 'https://api.saikaiscans.net/api/stories';
this.imagesurl = 'https://s3-alpha.saikaiscans.net';
this.novelContentQuery = 'div#leitor-serie-body';
this.novelFormat = 'image/png';
this.novelWidth = '56em';
this.novelPadding = '1.5em';
this.links = {
login: 'https://saikaiscan.com.br/login'
login: 'https://saikaiscan.net/login'
};
}

Expand Down

0 comments on commit 32823e1

Please sign in to comment.