Skip to content

Commit

Permalink
FIX SeriManga : change domain (#6575)
Browse files Browse the repository at this point in the history
Fixes #6568
  • Loading branch information
MikeZeDev authored and Sheepux committed Jan 2, 2024
1 parent fe51b84 commit 7f9a7fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/web/mjs/connectors/SeriManga.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export default class SeriManga extends Connector {
super.id = 'serimanga';
super.label = 'Seri Manga';
this.tags = [ 'manga', 'webtoon', 'turkish' ];
this.url = 'https://serimanga.com';
this.url = 'https://serimangas.com';
this.links = {
login: 'https://serimanga.com/#login'
login: 'https://serimangas.com/#login'
};
}

Expand Down Expand Up @@ -80,4 +80,4 @@ export default class SeriManga extends Connector {
let data = await this.fetchDOM(request, 'div.reader-manga.chapter-pages source.chapter-pages__item');
return data.map(element => this.getAbsolutePath(element.dataset.src || element, request.url));
}
}
}

0 comments on commit 7f9a7fb

Please sign in to comment.