diff options
Diffstat (limited to 'plugins/mangawindow.py')
-rwxr-xr-x | plugins/mangawindow.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mangawindow.py b/plugins/mangawindow.py index b5f5bf8..3a8c30f 100755 --- a/plugins/mangawindow.py +++ b/plugins/mangawindow.py @@ -51,7 +51,7 @@ def list_chapters(url, chapter_list_input): for item in chapter_list_input: title = item.get("title") if title and len(title) > 0: - seen_titles.add(title.lower().replace(" ", "")) + seen_titles.add(title.lower().replace(" ", "").replace("/", "_")) seen_urls = set() for item in chapter_list_input: @@ -66,7 +66,7 @@ def list_chapters(url, chapter_list_input): if title is None: print("Failed to get title for chapter") exit(2) - title = title.strip() + title = title.strip().replace("/", "_") url = "https://mangawindow.net" + element.attrib.get("href").strip() if title.lower().replace(" ", "") in seen_titles or url in seen_urls: break |