fix(madou): split tags

This commit is contained in:
Mathhew
2022-07-28 17:58:17 +08:00
parent 17d0c638dc
commit ee1306fb3b

View File

@@ -59,5 +59,5 @@ class Madou(Parser):
def getTags(self, htmltree): def getTags(self, htmltree):
studio = self.getStudio(htmltree) studio = self.getStudio(htmltree)
x = super().getTags(htmltree).split(',') x = super().getTags(htmltree)
return [i.strip() for i in x if len(i.strip()) and studio not in i and '麻豆' not in i] return [i.strip() for i in x if len(i.strip()) and studio not in i and '麻豆' not in i]