Make sure the summary is always there

This commit is contained in:
Fabio Manganiello 2018-05-21 09:47:50 +02:00
parent 0accbfa66e
commit 18efdb1c70
1 changed files with 2 additions and 0 deletions

View File

@ -118,6 +118,8 @@ class RssUpdates(HttpRequest):
logging.info('Processed new item from RSS feed <{}>: "{}"'
.format(self.url, entry.title))
entry.summary = entry.summary if hasattr(entry, 'summary') else None
if self.mercury_api_key:
entry.content = self._parse_entry_content(entry.link)
elif hasattr(entry, 'summary'):