diff options
| author | Fuwn <[email protected]> | 2023-11-06 15:37:54 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-06 15:37:54 -0800 |
| commit | 915d46720d309285f4e41a9b5b9b7ab0efef0944 (patch) | |
| tree | d8e6c02c54e5097d0b3afe29683e074d8751a3e0 /src/lib | |
| parent | feat(manga): option to disable volume ood (diff) | |
| download | due.moe-915d46720d309285f4e41a9b5b9b7ab0efef0944.tar.xz due.moe-915d46720d309285f4e41a9b5b9b7ab0efef0944.zip | |
fix(manga): round guessed chapter
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/AniList/media.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/AniList/media.ts b/src/lib/AniList/media.ts index a1f17fb6..701eddf0 100644 --- a/src/lib/AniList/media.ts +++ b/src/lib/AniList/media.ts @@ -292,7 +292,7 @@ export const recentMediaActivities = async ( } // } - return bestGuess; + return Math.round(bestGuess); } return null; |