JSON-LD: Tweak (News)Article description extraction

Let JSON-LD extract description from articleBody and fall back to
description field when processing (News)Article typed nodes
This commit is contained in:
Zenon Mousmoulas 2021-11-12 08:53:59 +02:00
parent d6469de1da
commit a2fd63ce22
1 changed files with 1 additions and 1 deletions

View File

@ -1338,7 +1338,7 @@ class InfoExtractor(object):
info.update({
'timestamp': parse_iso8601(e.get('datePublished')),
'title': unescapeHTML(e.get('headline')),
'description': unescapeHTML(e.get('articleBody')),
'description': unescapeHTML(e.get('articleBody') or e.get('description')),
})
elif item_type == 'VideoObject':
extract_video_object(e)