fix AnimeWorld India(ALL)

This commit is contained in:
kodjomoustapha
2024-05-17 11:06:32 +01:00
parent 05884c772e
commit 77f25da27f
2 changed files with 3 additions and 2 deletions

View File

@@ -52,7 +52,8 @@ class AnimeWorldIndia extends MProvider {
url += "${ll(url)}s_genre=";
if (genre.isNotEmpty) {
for (var st in genre) {
url += "${st.value}".toLowerCase().replaceAll(" ", "-");
String value = st.value;
url += value.toLowerCase().replaceAll(" ", "-");
if (genre.length > 1) {
url += "%2C";
}

View File

@@ -1,6 +1,6 @@
import '../../../../../model/source.dart';
const _animeworldindiaVersion = "0.0.25";
const _animeworldindiaVersion = "0.0.3";
const _animeworldindiaSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/animeworldindia/animeworldindia.dart";