about summary refs log tree commit diff
path: root/app/lib/ostatus/activity/remote.rb
blob: 755f885e6257e3c0a68cb95e1bdee9b4abb1caf4 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Ostatus::Activity::Remote < Ostatus::Activity::Base
  def perform
    find_status(id) || FetchRemoteStatusService.new.call(url)
  end
end