Fix Mastodon::RaceConditionError that occurs when external status is reblogged (#18424)

* Fix `Mastodon::RaceConditionError` that occurs when external status is reblogged

* Replace to `@object`
This commit is contained in:
Yamagishi Kazutoshi 2022-05-16 08:00:09 +09:00 committed by GitHub
parent f806b5d6b6
commit 69774b86bf

View file

@ -4,7 +4,7 @@ class ActivityPub::Activity::Announce < ActivityPub::Activity
def perform
return reject_payload! if delete_arrived_first?(@json['id']) || !related_to_local_activity?
with_lock("announce:#{@object['id']}") do
with_lock("announce:#{value_or_id(@object)}") do
original_status = status_from_object
return reject_payload! if original_status.nil? || !announceable?(original_status)