diff options
| author | Fuwn <[email protected]> | 2023-07-27 11:53:48 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-07-27 11:53:48 -0700 |
| commit | 00516dfd0e44ae0404d74c7e68904cf2d1438d4d (patch) | |
| tree | 488eb8c3314a069f3028bb8e4ccf74f39962473c /src/due/html.py | |
| parent | feat(index): detect outdated token (diff) | |
| download | old.due.moe-00516dfd0e44ae0404d74c7e68904cf2d1438d4d.tar.xz old.due.moe-00516dfd0e44ae0404d74c7e68904cf2d1438d4d.zip | |
fix(html): unavailable gtev0.1.4
Diffstat (limited to 'src/due/html.py')
| -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 |