From 5ee2bde49a48a97411182506f9adf3a8eda5994a Mon Sep 17 00:00:00 2001 From: lenafx Date: Fri, 2 Jan 2026 14:24:36 +0100 Subject: [PATCH] updated extensions --- anime/AnimeAV1.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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`, })); }