diff options
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/mangadex.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/plugins/mangadex.py b/plugins/mangadex.py index 59956a4..72b28f3 100755 --- a/plugins/mangadex.py +++ b/plugins/mangadex.py @@ -95,18 +95,10 @@ def list_chapters(url, chapter_list_input): exit(2) chapter_json = json_response["chapter"] - chapters = [] - for key, value in chapter_json.items(): - chapters.append((key, value)) - time_now = time.time() - chapters = sorted(chapters, key=chapter_sort_func, reverse=True) prev_chapter_number = "" output_chapters = [] - for chapter_data in chapters: - chapter_id = chapter_data[0] - chapter = chapter_data[1] - + for chapter_id, chapter in chapter_json.items(): timestamp = chapter.get("timestamp", 0) if timestamp > time_now: continue |