forked from platypush/platypush
Decoding title from RSS feeds
This commit is contained in:
parent
4f3c7f715f
commit
2fd7ba003b
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class RssUpdates(HttpRequest):
|
||||||
if latest_update is None \
|
if latest_update is None \
|
||||||
or entry_timestamp > latest_update:
|
or entry_timestamp > latest_update:
|
||||||
self.logger.info('Processed new item from RSS feed <{}>: "{}"'
|
self.logger.info('Processed new item from RSS feed <{}>: "{}"'
|
||||||
.format(self.url, entry.title))
|
.format(self.url, entry.title.decode('utf-8')))
|
||||||
|
|
||||||
entry.summary = entry.summary if hasattr(entry, 'summary') else None
|
entry.summary = entry.summary if hasattr(entry, 'summary') else None
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue