From 91cabc261e6114a7cbf496698ed61423c474d5c2 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 26 Jul 2023 19:24:21 -0700 Subject: fix(html): manga volume latest chapter index --- src/due/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/due/html.py b/src/due/html.py index 7472018..1e1a095 100644 --- a/src/due/html.py +++ b/src/due/html.py @@ -133,7 +133,7 @@ def manga_to_html(releasing_outdated_manga, show_missing): try: available = list( manga_chapter_aggregate["volumes"][ - str(len(list(manga_chapter_aggregate["volumes"])) - 1) + str(len(list(manga_chapter_aggregate["volumes"]))) ]["chapters"] )[0] except Exception: -- cgit v1.2.3