mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-28 21:22:13 +00:00
Update youtube_dl/extractor/parler.py
Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
parent
fec554563a
commit
2e1c744be8
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class ParlerIE(InfoExtractor):
|
|||
data = status['data'][0]['primary']
|
||||
|
||||
# Pull out metadata
|
||||
title = clean_html(data.get("full_body")).replace("\n", "")
|
||||
title = clean_html(data.get('full_body')) or self.generic_title(url)
|
||||
timestamp = unified_timestamp(data.get('date_created'))
|
||||
uploader = strip_or_none(data.get('name'))
|
||||
uploader_id = strip_or_none(data.get('username'))
|
||||
|
|
Loading…
Reference in a new issue