Use <atom:author> in RSS feeds (#312)

Co-authored-by: ekzyis <ek@stacker.news>
This commit is contained in:
ekzyis 2023-06-12 19:41:52 +02:00 committed by GitHub
parent b890215b98
commit 876b3e0fdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ const generateRssItem = (item) => {
<comments>${guid}</comments>
<description><![CDATA[<a href="${guid}">Comments</a>]]></description>
<pubDate>${new Date(item.createdAt).toUTCString()}</pubDate>
<atom:author><atom:name>${item.user.name}</atom:name></atom:author>
</item>
`
}