From 8f100ad917eaccd404165db5bbd4373aefac341a Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sat, 5 Nov 2022 23:42:07 +0100 Subject: [PATCH] YouTubeCollectionExtractor: Extract description --- server/entertainment_decider/extractors/collection/youtube.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/entertainment_decider/extractors/collection/youtube.py b/server/entertainment_decider/extractors/collection/youtube.py index f1cff6b..a818b3f 100644 --- a/server/entertainment_decider/extractors/collection/youtube.py +++ b/server/entertainment_decider/extractors/collection/youtube.py @@ -106,6 +106,7 @@ class YouTubeCollectionExtractor(CollectionExtractor[Dict]): if is_channel else f"[playlist] {info['channel']['name']}: {info['title']}" ) + object.description = data.get("description") object.add_single_uri(info["link"]) video_list = data["videos"] object.set_watch_in_order_auto(not is_channel)