diff --git a/src/data/posts.js b/src/data/posts.js index fff4d180..894d2b2d 100644 --- a/src/data/posts.js +++ b/src/data/posts.js @@ -61,7 +61,7 @@ const fetchAllPosts = async () => { let posts = [] let page = 0 let fetchMore = true - const uniqueSlugs = new Set() + const uniquePosts = new Set() while (fetchMore) { const { data, error } = await supabase @@ -78,9 +78,9 @@ const fetchAllPosts = async () => { if (data.length < PAGE_SIZE) fetchMore = false for (const post of data) { - if (uniqueSlugs.has(post['slug'])) continue + if (uniquePosts.has(post['url'])) continue - uniqueSlugs.add(post['slug']) + uniquePosts.add(post['url']) posts.push(post) } diff --git a/src/pages/dynamic/posts/index.html b/src/pages/dynamic/posts/index.html index 63d8d0e4..e5fda011 100644 --- a/src/pages/dynamic/posts/index.html +++ b/src/pages/dynamic/posts/index.html @@ -4,7 +4,6 @@ layout: default pagination: data: posts size: 8 - alias: posts permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html" --- {% for post in pagination.items %} diff --git a/workers/scrobble/index.js b/workers/scrobble/index.js index 23d8a49a..934c3691 100644 --- a/workers/scrobble/index.js +++ b/workers/scrobble/index.js @@ -16,7 +16,7 @@ const sanitizeMediaString = (str) => { const sendEmail = async (subject, text, authHeader, maxRetries = 3) => { const emailData = new URLSearchParams({ - from: ' hi@admin.coryd.dev', + from: 'coryd.dev ', to: 'hi@coryd.dev', subject: subject, text: text,