diff --git a/javascript/anime/src/de/aniworld.js b/javascript/anime/src/de/aniworld.js index 41d0f5a6..6594cf21 100644 --- a/javascript/anime/src/de/aniworld.js +++ b/javascript/anime/src/de/aniworld.js @@ -149,7 +149,7 @@ class DefaultExtension extends MProvider { const type = (langkey == 1) ? 'Dub' : 'Sub'; const host = element.selectFirst("a h4").text; - if (/*hostFilter.includes(host) && */langFilter.includes(`${lang} ${type}`)) { + if (hostFilter.includes(host) && langFilter.includes(`${lang} ${type}`)) { const redirect = baseUrl + element.selectFirst("a.watchEpisode").attr("href"); promises.push((async (redirect, lang, type, host) => { const location = (await dartClient.get(redirect)).headers.location;