parent
56af04dbb4
commit
b9d241c6f5
2 changed files with 4 additions and 2 deletions
|
@ -17,6 +17,8 @@ class ActivityPub::FetchRemoteStatusService < BaseService
|
||||||
actor = ActivityPub::TagManager.instance.uri_to_resource(actor_id, Account)
|
actor = ActivityPub::TagManager.instance.uri_to_resource(actor_id, Account)
|
||||||
actor = ActivityPub::FetchRemoteAccountService.new.call(actor_id) if actor.nil?
|
actor = ActivityPub::FetchRemoteAccountService.new.call(actor_id) if actor.nil?
|
||||||
|
|
||||||
|
return if actor.suspended?
|
||||||
|
|
||||||
ActivityPub::Activity.factory(activity, actor).perform
|
ActivityPub::Activity.factory(activity, actor).perform
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ class ActivityPub::ProcessCollectionService < BaseService
|
||||||
@account = account
|
@account = account
|
||||||
@json = Oj.load(body, mode: :strict)
|
@json = Oj.load(body, mode: :strict)
|
||||||
|
|
||||||
return if @account.suspended? || !supported_context?
|
return unless supported_context?
|
||||||
|
|
||||||
return if different_actor? && verify_account!.nil?
|
return if different_actor? && verify_account!.nil?
|
||||||
|
return if @account.suspended?
|
||||||
|
|
||||||
case @json['type']
|
case @json['type']
|
||||||
when 'Collection', 'CollectionPage'
|
when 'Collection', 'CollectionPage'
|
||||||
|
|
Loading…
Reference in a new issue