The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

12 satır
295 B

  1. # frozen_string_literal: true
  2. class OStatus::Activity::Remote < OStatus::Activity::Base
  3. def perform
  4. if activitypub_uri?
  5. find_status(activitypub_uri) || FetchRemoteStatusService.new.call(url)
  6. else
  7. find_status(id) || FetchRemoteStatusService.new.call(url)
  8. end
  9. end
  10. end