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";
}