diff --git a/anime/AnimeAV1.js b/anime/AnimeAV1.js index 1c6ef49..b1f35d0 100644 --- a/anime/AnimeAV1.js +++ b/anime/AnimeAV1.js @@ -2,7 +2,7 @@ class AnimeAV1 { constructor() { this.type = "anime-board"; - this.version = "1.1" + this.version = "1.2" this.api = "https://animeav1.com"; } @@ -27,8 +27,9 @@ class AnimeAV1 { return data.map(anime => ({ id: anime.slug, title: anime.title, - url: `${this.api}/anime/${anime.slug}`, + url: `${this.api}/media/${anime.slug}`, subOrDub: "both", + image: `https://cdn.animeav1.com/covers/${anime.id}.jpg`, })); }