From: bopol Date: Thu, 1 Jul 2021 06:53:22 +0000 (+0200) Subject: [peertube] only call description endpoint if necessary (#29383) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=a8035827177d6b59aca03bd717acb6a9bdd75ada;p=youtube-dl [peertube] only call description endpoint if necessary (#29383) --- diff --git a/youtube_dl/extractor/peertube.py b/youtube_dl/extractor/peertube.py index d9b13adc2..3af533925 100644 --- a/youtube_dl/extractor/peertube.py +++ b/youtube_dl/extractor/peertube.py @@ -569,15 +569,15 @@ class PeerTubeIE(InfoExtractor): formats.append(f) self._sort_formats(formats) - full_description = self._call_api( - host, video_id, 'description', note='Downloading description JSON', - fatal=False) + description = video.get('description') + if len(description) >= 250: + # description is shortened + full_description = self._call_api( + host, video_id, 'description', note='Downloading description JSON', + fatal=False) - description = None - if isinstance(full_description, dict): - description = str_or_none(full_description.get('description')) - if not description: - description = video.get('description') + if isinstance(full_description, dict): + description = str_or_none(full_description.get('description')) or description subtitles = self.extract_subtitles(host, video_id)