When status is fetched instead of delivered, do not stream it (#5437)
This commit is contained in:
		
							parent
							
								
									8b2ee20dfa
								
							
						
					
					
						commit
						fef7c55bce
					
				
					 2 changed files with 7 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -67,9 +67,14 @@ class ActivityPub::Activity
 | 
			
		|||
  end
 | 
			
		||||
 | 
			
		||||
  def distribute(status)
 | 
			
		||||
    crawl_links(status)
 | 
			
		||||
 | 
			
		||||
    # Only continue if the status is supposed to have
 | 
			
		||||
    # arrived in real-time
 | 
			
		||||
    return unless @options[:override_timestamps]
 | 
			
		||||
 | 
			
		||||
    notify_about_reblog(status) if reblog_of_local_account?(status)
 | 
			
		||||
    notify_about_mentions(status)
 | 
			
		||||
    crawl_links(status)
 | 
			
		||||
    distribute_to_followers(status)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -56,7 +56,7 @@ class OStatus::Activity::Creation < OStatus::Activity::Base
 | 
			
		|||
    Rails.logger.debug "Queuing remote status #{status.id} (#{id}) for distribution"
 | 
			
		||||
 | 
			
		||||
    LinkCrawlWorker.perform_async(status.id) unless status.spoiler_text?
 | 
			
		||||
    DistributionWorker.perform_async(status.id)
 | 
			
		||||
    DistributionWorker.perform_async(status.id) if @options[:override_timestamps]
 | 
			
		||||
 | 
			
		||||
    status
 | 
			
		||||
  end
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue