Skip to content

Commit 803ec31

Browse files
fix(newsletter): rss feed link missing in (#7727)
1 parent 48e116f commit 803ec31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/site/src/app/newsletter/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type RssItem = {
2929

3030
async function getLatestBlogPosts(count = 3): Promise<RssItem[]> {
3131
try {
32-
const res = await fetch("http://www.prisma.io/blog/rss.xml", {
32+
const res = await fetch("https://www.prisma.io/blog/rss.xml", {
3333
next: { revalidate: 3600 },
3434
});
3535
const xml = await res.text();

0 commit comments

Comments
 (0)