fix: sender
This commit is contained in:
parent
e0593447eb
commit
23602a7ce0
3 changed files with 4 additions and 5 deletions
|
@ -61,7 +61,7 @@ const fetchAllPosts = async () => {
|
||||||
let posts = []
|
let posts = []
|
||||||
let page = 0
|
let page = 0
|
||||||
let fetchMore = true
|
let fetchMore = true
|
||||||
const uniqueSlugs = new Set()
|
const uniquePosts = new Set()
|
||||||
|
|
||||||
while (fetchMore) {
|
while (fetchMore) {
|
||||||
const { data, error } = await supabase
|
const { data, error } = await supabase
|
||||||
|
@ -78,9 +78,9 @@ const fetchAllPosts = async () => {
|
||||||
if (data.length < PAGE_SIZE) fetchMore = false
|
if (data.length < PAGE_SIZE) fetchMore = false
|
||||||
|
|
||||||
for (const post of data) {
|
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)
|
posts.push(post)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@ layout: default
|
||||||
pagination:
|
pagination:
|
||||||
data: posts
|
data: posts
|
||||||
size: 8
|
size: 8
|
||||||
alias: posts
|
|
||||||
permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
|
permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
|
||||||
---
|
---
|
||||||
{% for post in pagination.items %}
|
{% for post in pagination.items %}
|
||||||
|
|
|
@ -16,7 +16,7 @@ const sanitizeMediaString = (str) => {
|
||||||
|
|
||||||
const sendEmail = async (subject, text, authHeader, maxRetries = 3) => {
|
const sendEmail = async (subject, text, authHeader, maxRetries = 3) => {
|
||||||
const emailData = new URLSearchParams({
|
const emailData = new URLSearchParams({
|
||||||
from: '<coryd.dev> hi@admin.coryd.dev',
|
from: 'coryd.dev <hi@admin.coryd.dev>',
|
||||||
to: 'hi@coryd.dev',
|
to: 'hi@coryd.dev',
|
||||||
subject: subject,
|
subject: subject,
|
||||||
text: text,
|
text: text,
|
||||||
|
|
Reference in a new issue