Skip to content

Commit 154fb9f

Browse files
committed
changed mangalib mirror
1 parent 9e063df commit 154fb9f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

nlightreader/consts/urls.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@
2424
URL_NHENTAI = "https://nhentai.net"
2525

2626
URL_ALLHENTAI = "https://20.allhen.online"
27-
URL_ALLHENTAI_API = ""
2827

2928
URL_SLASHLIB = "https://v2.slashlib.me"
30-
URL_MANGALIB = "https://test-front.mangalib.me"
29+
URL_MANGALIB = "https://mangalib.me"
3130
URL_RANOBELIB = "https://ranobelib.me"
3231
URL_ANILIB = "https://anilib.me"
3332
URL_LIB_API = "https://api.lib.social/api"

nlightreader/parsers/hentai_manga/allhentai_hmanga.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from bs4 import BeautifulSoup
22

3-
from nlightreader.consts.urls import URL_ALLHENTAI, URL_ALLHENTAI_API
3+
from nlightreader.consts.urls import URL_ALLHENTAI
44
from nlightreader.consts.enums import Nl
55
from nlightreader.exceptions import parser_content_exc
66
from nlightreader.models import Chapter, Image, Manga
@@ -15,7 +15,6 @@ class AllHentai(AbstractHentaiMangaCatalog):
1515
def __init__(self):
1616
super().__init__()
1717
self.url = URL_ALLHENTAI
18-
self.url_api = URL_ALLHENTAI_API
1918

2019
def search_manga(self, form):
2120
url = f"{self.url}/search"

0 commit comments

Comments
 (0)