Skip to content

Commit

Permalink
fix: episode list filler numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaUnknown committed Aug 24, 2024
1 parent c288725 commit 7251f46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/views/ViewAnime/EpisodeList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export let play
const episodeList = Array.from({ length: episodeCount }, (_, i) => ({
episode: i + 1, image: null, summary: null, rating: null, title: null, length: null, airdate: null, airingAt: null, filler: fillerEpisodes[id]?.includes(i)
episode: i + 1, image: null, summary: null, rating: null, title: null, length: null, airdate: null, airingAt: null, filler: fillerEpisodes[id]?.includes(i + 1)
}))
async function load () {
const res = await fetch('https://api.ani.zip/mappings?anilist_id=' + id)
Expand Down

0 comments on commit 7251f46

Please sign in to comment.