aboutsummaryrefslogtreecommitdiff
path: root/plugins/mangaplus.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mangaplus.py')
-rwxr-xr-xplugins/mangaplus.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mangaplus.py b/plugins/mangaplus.py
index 0d87ddc..9409989 100755
--- a/plugins/mangaplus.py
+++ b/plugins/mangaplus.py
@@ -223,9 +223,9 @@ def list_chapters(url, chapter_list_input):
seen_urls = set()
for item in chapter_list_input:
- url = item.get("url")
- if url and len(url) > 0:
- seen_urls.add(url)
+ chapter_url = item.get("url")
+ if chapter_url and len(chapter_url) > 0:
+ seen_urls.add(chapter_url)
resp_data = resp.success.title_detail
all_chapters = []