From 7c0426ab2c08a392e23faeae25805b6c9c0ea739 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 7 Oct 2019 03:39:56 -0600 Subject: [PATCH] Update AP inbox --- app/Util/ActivityPub/Inbox.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Util/ActivityPub/Inbox.php b/app/Util/ActivityPub/Inbox.php index eec2290c4..052b5fd07 100644 --- a/app/Util/ActivityPub/Inbox.php +++ b/app/Util/ActivityPub/Inbox.php @@ -326,7 +326,7 @@ class Inbox $profile = Helpers::profileFetch($actor); $status = Status::whereProfileId($profile->id) ->whereUri($id) - ->orWhereUrl($id) + ->orWhere('url', $id) ->orWhere('object_url', $id) ->first(); if(!$status) {