From 591bdbf9c5d64426180f536c55f9ed594e28a5a2 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 7 Apr 2020 17:43:33 +0200 Subject: mm --- plugins/mangaplus.shueisha.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/mangaplus.shueisha.py b/plugins/mangaplus.shueisha.py index d0978e7..5cd9b67 100755 --- a/plugins/mangaplus.shueisha.py +++ b/plugins/mangaplus.shueisha.py @@ -233,13 +233,13 @@ def list_chapters(url, chapter_list_input): seen_urls.add(url) resp_data = resp.success.title_detail - all_chapters_reversed = [] + all_chapters = [] for resp_chapters in (resp_data.first_chapters, resp_data.last_chapters): for chapter in resp_chapters: - all_chapters_reversed.append(chapter) + all_chapters.append(chapter) chapters = [] - for chapter in reversed(all_chapters_reversed): + for chapter in reversed(all_chapters): title = chapter.subtitle url = "https://mangaplus.shueisha.co.jp/viewer/{0}".format(chapter.id) if title.lower().replace(" ", "") in seen_titles or url in seen_urls: -- cgit v1.2.3