misc: handle more feed title errors (#20895)

This commit is contained in:
Frédéric Péters 2017-12-26 16:27:45 +01:00
parent 78e4a78953
commit 58a99685de
1 changed files with 1 additions and 1 deletions

View File

@ -740,7 +740,7 @@ class FeedCell(CellBase):
if not self.title:
try:
self.title = extra_context['feed']['feed'].title
except KeyError:
except (KeyError, AttributeError):
pass
return extra_context