From 9275e06c3c19e732993595d9b2b5e20eeac885d7 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
Date: Sun, 8 Oct 2023 18:01:06 -0400
Subject: [PATCH] Fixed a typo  in send note

---
 api/activitypub/sendNote.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/activitypub/sendNote.ts b/api/activitypub/sendNote.ts
index cc952c62f..6179fbc12 100644
--- a/api/activitypub/sendNote.ts
+++ b/api/activitypub/sendNote.ts
@@ -47,7 +47,7 @@ export default async function (req: VercelRequest, res: VercelResponse) {
   const configData = config.data();
   let sentIds = [];
   if (configData != undefined) {
-    sentIds.push(...configData.sendIds);
+    sentIds.push(...configData.sentIds);
     let lastEpoch = configData.lastEpoch;
     let currentEpoch = new Date().getTime();
     let elapsed = currentEpoch - lastEpoch;
-- 
GitLab