diff options
| author | Fuwn <[email protected]> | 2023-08-01 03:39:18 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-08-01 03:39:18 -0700 |
| commit | b492f5ba6e320957873f35430a4c221dffa0397e (patch) | |
| tree | 01dad76550716056830ac5a3744b7efec9fa4b22 /src | |
| parent | fix(anime): null airing scheadule (diff) | |
| download | old.due.moe-b492f5ba6e320957873f35430a4c221dffa0397e.tar.xz old.due.moe-b492f5ba6e320957873f35430a4c221dffa0397e.zip | |
feat(index): hide light novelsv0.1.8
Diffstat (limited to 'src')
| -rw-r--r-- | src/due/anilist/collection.py | 1 | ||||
| -rw-r--r-- | src/due/routes/index.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/due/anilist/collection.py b/src/due/anilist/collection.py index 6c66314..1103ec6 100644 --- a/src/due/anilist/collection.py +++ b/src/due/anilist/collection.py @@ -40,6 +40,7 @@ def media_list_collection_query(user_id: int, type) -> str: status type episodes + format title {{ romaji english native }} nextAiringEpisode {{ episode timeUntilAiring }} mediaListEntry {{ progress }} diff --git a/src/due/routes/index.py b/src/due/routes/index.py index 5694314..da74c88 100644 --- a/src/due/routes/index.py +++ b/src/due/routes/index.py @@ -101,7 +101,7 @@ def home(username): releasing_manga = [ media for media in current_manga - if media["media"]["status"] == "RELEASING" + if media["media"]["status"] == "RELEASING" and media["media"]["format"] != "NOVEL" ] releasing_outdated_manga = [ media |