From 3536816d51f89223f20d8e927334dfa2deb0c4f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Mon, 15 Dec 2025 21:57:05 +0100 Subject: [PATCH] [aryion] fix 'description' metadata --- gallery_dl/extractor/aryion.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gallery_dl/extractor/aryion.py b/gallery_dl/extractor/aryion.py index 2f862379..ff70c75a 100644 --- a/gallery_dl/extractor/aryion.py +++ b/gallery_dl/extractor/aryion.py @@ -153,6 +153,8 @@ class AryionExtractor(Extractor): "user" : self.user or artist, "title" : title, "artist": artist, + "description": text.unescape(extr( + 'property="og:description" content="', '"')), "path" : text.split_html(extr( "cookiecrumb'>", ':", "<")), "favorites": text.parse_int(extr("Favorites:", "<")), "tags" : text.split_html(extr("class='taglist'>", "")), - "description": text.unescape(text.remove_html(extr( - "

", "

"), "", "")), "filename" : fname, "extension": ext, "_http_lastmodified": lmod,