From 00516dfd0e44ae0404d74c7e68904cf2d1438d4d Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 27 Jul 2023 11:53:48 -0700 Subject: fix(html): unavailable gte --- src/due/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/due/html.py b/src/due/html.py index c06f939..f674adf 100644 --- a/src/due/html.py +++ b/src/due/html.py @@ -210,7 +210,7 @@ def manga_to_html(releasing_outdated_manga, show_missing): if math.floor(float(previous_volume_largest_chapter)) > available: available = math.floor(float(previous_volume_largest_chapter)) - if int(progress) >= int(available): + if str(available) != "?" and int(progress) >= int(available): ids.pop() return -- cgit v1.2.3