[fantia] simplify 'tags' to a list of strings (#4752)

This commit is contained in:
Mike Fährmann
2023-11-02 15:25:01 +01:00
parent 72b18d701f
commit 91e20eb59b

View File

@@ -108,7 +108,7 @@ class FantiaExtractor(Extractor):
"fanclub_user_name": resp["fanclub"]["user"]["name"],
"fanclub_name": resp["fanclub"]["name"],
"fanclub_url": self.root+"/fanclubs/"+str(resp["fanclub"]["id"]),
"tags": resp["tags"],
"tags": [t["name"] for t in resp["tags"]],
"_data": resp,
}