Use object name in the RSS feed title if possible
Articles have a title stored in the object name. It makes sense to also use this title in the RSS entry.main
parent
ce6f9238f3
commit
c1692a296d
|
@ -1694,9 +1694,9 @@ async def _gen_rss_feed(
|
||||||
|
|
||||||
fe = fg.add_entry()
|
fe = fg.add_entry()
|
||||||
fe.id(outbox_object.url)
|
fe.id(outbox_object.url)
|
||||||
|
if outbox_object.name is not None:
|
||||||
# Atom feeds require a title
|
fe.title(outbox_object.name)
|
||||||
if not is_rss:
|
elif not is_rss: # Atom feeds require a title
|
||||||
fe.title(outbox_object.url)
|
fe.title(outbox_object.url)
|
||||||
|
|
||||||
fe.link(href=outbox_object.url)
|
fe.link(href=outbox_object.url)
|
||||||
|
|
Loading…
Reference in New Issue