This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-07-18 07:39:47 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-18 16:37:26 -07:00
|
|
|
class OStatus::Activity::Remote < OStatus::Activity::Base
|
2017-07-18 07:39:47 -07:00
|
|
|
def perform
|
|
|
|
find_status(id) || FetchRemoteStatusService.new.call(url)
|
|
|
|
end
|
|
|
|
end
|