Added fullContent to Feedly API

This commit is contained in:
Oleg Lavrovsky 2017-11-17 15:47:53 +01:00
parent 01e12dd872
commit e2593c8b36

View file

@ -39,6 +39,8 @@ def parse(obj, raw, stream):
# Collect text in nested JSON content
if 'content' in obj.raw:
obj.content = obj.raw['content']
elif 'fullContent' in obj.raw:
obj.content = obj.raw['fullContent']
else:
if 'summary' in obj.raw:
if 'content' in obj.raw['summary']: