From 6f772ef5333754181ad6339a0bff164e13d28561 Mon Sep 17 00:00:00 2001 From: Shlee Date: Wed, 15 Jul 2026 23:10:26 +0930 Subject: [PATCH] Fix handling of `QuoteRequest` rejections when those can't be found by `id` (#39820) --- app/lib/activitypub/activity/reject.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/activitypub/activity/reject.rb b/app/lib/activitypub/activity/reject.rb index e5684367a2..d27b60a604 100644 --- a/app/lib/activitypub/activity/reject.rb +++ b/app/lib/activitypub/activity/reject.rb @@ -37,7 +37,7 @@ class ActivityPub::Activity::Reject < ActivityPub::Activity quote = quote_from_request_json(@object) return unless quote.present? && quote.status.local? - reject_quote!(quoting_status.quote) + reject_quote!(quote) end def reject_quote!(quote)