1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-06-05 21:59:23 +02:00

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.
This commit is contained in:
João Costa
2023-01-09 19:07:09 +01:00
committed by Thomas Sileo
parent ce6f9238f3
commit c1692a296d

View File

@ -1694,9 +1694,9 @@ async def _gen_rss_feed(
fe = fg.add_entry()
fe.id(outbox_object.url)
# Atom feeds require a title
if not is_rss:
if outbox_object.name is not None:
fe.title(outbox_object.name)
elif not is_rss: # Atom feeds require a title
fe.title(outbox_object.url)
fe.link(href=outbox_object.url)