fix: error rss arg

This commit is contained in:
KazooTTT
2025-02-08 15:59:57 +08:00
parent 27d244aebe
commit 36c24528f4

View File

@ -33,7 +33,7 @@ export const GET = async () => {
}) })
: "", : "",
author: siteConfig.author, author: siteConfig.author,
category: post.data?.category, categories: post.data?.category ? [post.data.category] : [],
}; };
}), }),
}); });