aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-07-26 19:24:21 -0700
committerFuwn <[email protected]>2023-07-26 19:24:21 -0700
commit91cabc261e6114a7cbf496698ed61423c474d5c2 (patch)
treece3c9395be71177cdaa69c339f0e68ef6298d540
parentfeat(html): dynamic concurrent jobs (diff)
downloadold.due.moe-91cabc261e6114a7cbf496698ed61423c474d5c2.tar.xz
old.due.moe-91cabc261e6114a7cbf496698ed61423c474d5c2.zip
fix(html): manga volume latest chapter index
-rw-r--r--src/due/html.py2
1 files changed, 1 insertions, 1 deletions
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: