0
0
Fork 0

Fix #4917 - Add missing suspend checks (#4921)

This commit is contained in:
Eugen Rochko 2017-09-13 11:05:02 +02:00 committed by GitHub
parent 56af04dbb4
commit b9d241c6f5
2 changed files with 4 additions and 2 deletions

View file

@ -7,9 +7,9 @@ class ActivityPub::ProcessCollectionService < BaseService
@account = account
@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 @account.suspended?
case @json['type']
when 'Collection', 'CollectionPage'