AniWatch.to : fix latest update url

This commit is contained in:
kodjomoustapha
2023-10-27 13:09:01 +01:00
parent 486c2ce1de
commit f3c6cf8b59
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ getPopularAnime(MManga anime) async {
}
getLatestUpdatesAnime(MManga anime) async {
final data = {"url": "${anime.baseUrl}/top-airing?page=${anime.page}"};
final data = {"url": "${anime.baseUrl}/recently-updated?page=${anime.page}"};
final res = await MBridge.http('GET', json.encode(data));
if (res.hasError) {
return res;

View File

@@ -1,7 +1,7 @@
import '../../../../model/source.dart';
import '../../../../utils/utils.dart';
const aniwatchVersion = "0.0.3";
const aniwatchVersion = "0.0.35";
const aniwatchSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/src/en/aniwatch/aniwatch-v$aniwatchVersion.dart";