Fix nil account issue in ProcessAccountService (#7019)

This commit is contained in:
Nolan Lawson 2018-04-03 04:08:11 -07:00 committed by Eugen Rochko
parent 2e59751823
commit 6ff3b3e4db
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class ActivityPub::ProcessAccountService < BaseService
after_protocol_change! if protocol_changed?
after_key_change! if key_changed?
check_featured_collection! if @account.featured_collection_url.present?
check_featured_collection! if @account&.featured_collection_url&.present?
@account
rescue Oj::ParseError