mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-11 22:15:35 +00:00
This commit is contained in:
parent
48f87a25d5
commit
9f414cd7d3
3 changed files with 3 additions and 5 deletions
|
|
@ -40,7 +40,7 @@ It is meant to feel look, work and perform like a premium streaming service, but
|
|||
|
||||
## 🏆 Features
|
||||
|
||||
### **Anime**
|
||||
### 🎞️ Anime Management
|
||||
|
||||
* Effortlessly manage your anime list with support for AniList, Kitsu, ~~MAL~~, and local storage.
|
||||
* Automatically track watched episodes.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ui",
|
||||
"version": "6.3.56",
|
||||
"version": "6.3.57",
|
||||
"license": "BUSL-1.1",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.14.4",
|
||||
|
|
|
|||
|
|
@ -118,11 +118,9 @@ export default new class AuthAggregator {
|
|||
? 'COMPLETED'
|
||||
: media.mediaListEntry?.status === 'REPEATING' ? 'REPEATING' : 'CURRENT'
|
||||
|
||||
const repeat = (media.mediaListEntry?.repeat ?? 0) + (totalEps === progress ? 1 : 0)
|
||||
|
||||
const lists = (media.mediaListEntry?.customLists as Array<{enabled: boolean, name: string}> | undefined)?.filter(({ enabled }) => enabled).map(({ name }) => name) ?? []
|
||||
|
||||
this.entry({ id: media.id, progress, repeat, status, lists })
|
||||
this.entry({ id: media.id, progress, status, lists })
|
||||
}
|
||||
|
||||
delete (media: Media) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue