Skip to content

Commit

Permalink
fix(rss): correct author format
Browse files Browse the repository at this point in the history
  • Loading branch information
rayhanadev committed Jan 4, 2025
1 parent 2fe129f commit aaf78fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/feed.xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ export const GET: APIRoute = async () => {
pubDate: date,
language: "en-us",
copyright: `Copyright © ${new Date().getUTCFullYear()}, Rayhan Noufal Arayilakath`,
author: `${EMAIL_ADDRESS} <${FULL_NAME}>`,
managingEditor: EMAIL_ADDRESS,
webMaster: EMAIL_ADDRESS,
author: `${EMAIL_ADDRESS} (${FULL_NAME})`,
managingEditor: `${EMAIL_ADDRESS} (${FULL_NAME})`,
webMaster: `${EMAIL_ADDRESS} (${FULL_NAME})`,
docs: "https://www.rssboard.org/rss-specification",
ttl: 60,
lastBuildDate: new Date(),
Expand Down

0 comments on commit aaf78fe

Please sign in to comment.