Просмотр исходного кода

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

master^2
Takeshi Umeda 4 лет назад
committed by Eugen Rochko
Родитель
Сommit
a391eaf4d8
1 измененных файлов: 1 добавлений и 1 удалений
  1. +1
    -1
      app/services/fetch_remote_status_service.rb

+ 1
- 1
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

Загрузка…
Отмена
Сохранить