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