Skip to content

Commit

Permalink
FIx MangaHub: change API & CDN domains (#6683)
Browse files Browse the repository at this point in the history
Fixes #6682

Websites based on MH has been tested too :)
  • Loading branch information
MikeZeDev authored Jan 15, 2024
1 parent 2c39458 commit 93f7054
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/web/mjs/connectors/MangaHub.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export default class MangaHub extends Connector {
super.label = 'MangaHub';
this.tags = [ 'manga', 'english' ];
this.url = 'https://mangahub.io';
this.apiURL = 'https://api.mghubcdn.com/graphql';
this.cdnURL = 'https://img.mghubcdn.com/file/imghub/';
this.apiURL = 'https://api2.mangahub.io/graphql';
this.cdnURL = 'https://imgx.mangahub.io/';

this.path = 'm01';
this.requestOptions.headers.set('x-origin', this.url);
Expand Down

0 comments on commit 93f7054

Please sign in to comment.