diff options
| author | Fuwn <[email protected]> | 2023-07-26 19:26:39 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-07-26 19:26:39 -0700 |
| commit | 22ddad9b6dee87f87e3badc0216ebf3ae51a5a6d (patch) | |
| tree | e9be8ae84bfaf7bf4089ceec85f3dd6d943bd0b7 | |
| parent | fix(html): manga volume latest chapter index (diff) | |
| download | old.due.moe-22ddad9b6dee87f87e3badc0216ebf3ae51a5a6d.tar.xz old.due.moe-22ddad9b6dee87f87e3badc0216ebf3ae51a5a6d.zip | |
fix(html): chapter over track not due
| -rw-r--r-- | src/due/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/due/html.py b/src/due/html.py index 1e1a095..eed686e 100644 --- a/src/due/html.py +++ b/src/due/html.py @@ -170,7 +170,7 @@ def manga_to_html(releasing_outdated_manga, show_missing): if str(available)[0].isdigit(): available = math.floor(float(available)) - if str(progress) == str(available): + if int(progress) >= int(available): ids.pop() return |