Fix an error when ActivityPub::FetchRemoteStatusService url is called with nil (#12652)

master
Takeshi Umeda 4 years ago committed by Eugen Rochko
parent 45f8968404
commit a391eaf4d8
  1. 2
      app/services/fetch_remote_status_service.rb

@ -9,6 +9,6 @@ class FetchRemoteStatusService < BaseService
resource_options = { prefetched_body: prefetched_body }
end
ActivityPub::FetchRemoteStatusService.new.call(resource_url, **resource_options)
ActivityPub::FetchRemoteStatusService.new.call(resource_url, **resource_options) unless resource_url.nil?
end
end

Loading…
Cancel
Save