mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 19:01:15 +00:00
AniWorld + SerienStream filter out pseudo authors
in form of " & n weitere".
This commit is contained in:
@@ -122,7 +122,11 @@ class DefaultExtension extends MProvider {
|
||||
.filter(e => e.outerHtml.includes("Produzent:"));
|
||||
let author = "";
|
||||
if (produzent.length > 0) {
|
||||
author = produzent[0].select("li").map(e => e.text).join(", ");
|
||||
author = produzent[0]
|
||||
.select("li")
|
||||
.map((e) => e.text)
|
||||
.filter((text) => !/^\s\&\s\d+\sweitere$/.test(text))
|
||||
.join(", ");
|
||||
}
|
||||
const seasonsElements = document.select("#stream > ul:nth-child(1) > li > a");
|
||||
// Use asyncPool to limit concurrency while processing seasons
|
||||
|
||||
Reference in New Issue
Block a user