Merge tag 'v4.4.5'

This commit is contained in:
Mike Barnes 2025-09-26 10:05:23 +10:00
commit a8ede71aad
14 changed files with 193 additions and 11 deletions

View file

@ -28,6 +28,9 @@ class ActivityPub::Activity::Update < ActivityPub::Activity
@status = Status.find_by(uri: object_uri, account_id: @account.id)
# We may be getting `Create` and `Update` out of order
@status ||= ActivityPub::Activity::Create.new(@json, @account, **@options).perform
return if @status.nil?
ActivityPub::ProcessStatusUpdateService.new.call(@status, @json, @object, request_id: @options[:request_id])