added entry.link to support youtube rss

youtube RSS (e.g. https://www.youtube.com/feeds/videos.xml?channel_id=UCsXVk37bltHxD1rDPwtNM8Q) uses link tags so I added them to them.
This commit is contained in:
Stefan R. Grotz
2019-03-10 10:16:42 +01:00
committed by GitHub
parent 37aedd9e56
commit 9d101a0dad

View File

@ -69,6 +69,7 @@ def get_entry(entry):
hashtags.append('#{}'.format(t))
return {
'url': entry.id,
'link': entry.link,
'title': entry.title,
'summary': entry.get('summary', ''),
'hashtags': ' '.join(hashtags),