Skip to content

Commit d97ec69

Browse files
committed
Fix MangaFox parser, remove TLD requirement
1 parent 336b24a commit d97ec69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/sourceparser/m2emMangafox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def getChapterName(page):
3838
soup = BeautifulSoup(page.content, 'html.parser')
3939

4040
#Get Manga Titel
41-
search = re.search(': (.*?) at MangaFox.me"', str(soup))
41+
search = re.search(': (.*?) at MangaFox', str(soup))
4242
chaptername = search.group(1)
4343
return chaptername
4444

0 commit comments

Comments
 (0)