From 22ddad9b6dee87f87e3badc0216ebf3ae51a5a6d Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 26 Jul 2023 19:26:39 -0700 Subject: fix(html): chapter over track not due --- src/due/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/due/html.py') 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 -- cgit v1.2.3