Merge pull request #327 from kmycode/upstream-20231204

Upstream 20231204
This commit is contained in:
KMY(雪あすか) 2023-12-04 13:00:02 +09:00 committed by GitHub
commit 831fa2d00a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
179 changed files with 1036 additions and 775 deletions

View file

@ -9,7 +9,7 @@ class ActivityPub::Activity::Move < ActivityPub::Activity
target_account = ActivityPub::FetchRemoteAccountService.new.call(target_uri)
if target_account.nil? || target_account.suspended? || !target_account.also_known_as.include?(origin_account.uri)
if target_account.nil? || target_account.unavailable? || !target_account.also_known_as.include?(origin_account.uri)
unmark_as_processing!
return
end