From f9edb13f6209b075d4a53c130d1bba166ae188fa Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 19 Sep 2025 14:43:04 -0400 Subject: [PATCH] fix: missing actor assertion on 1b12 announced upboat --- src/activitypub/inbox.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/activitypub/inbox.js b/src/activitypub/inbox.js index 754720f208..ea5b032a1a 100644 --- a/src/activitypub/inbox.js +++ b/src/activitypub/inbox.js @@ -298,6 +298,7 @@ inbox.announce = async (req) => { const exists = await posts.exists(localId || id); if (exists) { try { + await activitypub.actors.assert(object.actor); const result = await posts.upvote(localId || id, object.actor); if (localId) { socketHelpers.upvote(result, 'notifications:upvoted-your-post-in');