From 1de2b23b5dc3d18c836eed3e12fe806752994073 Mon Sep 17 00:00:00 2001 From: Ghostie Date: Wed, 8 Jan 2025 21:28:46 -0500 Subject: [PATCH] more bugs fixed --- app/Http/Controllers/AP/APOutboxController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/AP/APOutboxController.php b/app/Http/Controllers/AP/APOutboxController.php index 6342ce0..ab58ef2 100644 --- a/app/Http/Controllers/AP/APOutboxController.php +++ b/app/Http/Controllers/AP/APOutboxController.php @@ -374,7 +374,7 @@ class APOutboxController extends Controller { foreach ($request ["mentions"] as $mention) { - $mention_exists = NoteMention::where ("note_id", $note->id)->where ("object", $mention ["href"])->first (); + $mention_exists = NoteMention::where ("note_id", $note->id)->where ("actor_id", $mention ["href"])->first (); if ($mention_exists) continue;