From 91e20eb59b852f56197233e3d4e1a1650e98492f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 2 Nov 2023 15:25:01 +0100 Subject: [PATCH] [fantia] simplify 'tags' to a list of strings (#4752) --- gallery_dl/extractor/fantia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/fantia.py b/gallery_dl/extractor/fantia.py index 4a67695f..6218f198 100644 --- a/gallery_dl/extractor/fantia.py +++ b/gallery_dl/extractor/fantia.py @@ -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, }