diff options
| -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 |