Fix the sample account icon of Profile directory to local only (#11872)
This commit is contained in:
		
							parent
							
								
									38dc51b2d6
								
							
						
					
					
						commit
						0e5b9e3ba0
					
				@ -20,7 +20,7 @@
 | 
				
			|||||||
class Tag < ApplicationRecord
 | 
					class Tag < ApplicationRecord
 | 
				
			||||||
  has_and_belongs_to_many :statuses
 | 
					  has_and_belongs_to_many :statuses
 | 
				
			||||||
  has_and_belongs_to_many :accounts
 | 
					  has_and_belongs_to_many :accounts
 | 
				
			||||||
  has_and_belongs_to_many :sample_accounts, -> { searchable.discoverable.popular.limit(3) }, class_name: 'Account'
 | 
					  has_and_belongs_to_many :sample_accounts, -> { local.discoverable.popular.limit(3) }, class_name: 'Account'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  has_many :featured_tags, dependent: :destroy, inverse_of: :tag
 | 
					  has_many :featured_tags, dependent: :destroy, inverse_of: :tag
 | 
				
			||||||
  has_one :account_tag_stat, dependent: :destroy
 | 
					  has_one :account_tag_stat, dependent: :destroy
 | 
				
			||||||
 | 
				
			|||||||
@ -33,7 +33,7 @@ class InstancePresenter
 | 
				
			|||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def sample_accounts
 | 
					  def sample_accounts
 | 
				
			||||||
    Rails.cache.fetch('sample_accounts', expires_in: 12.hours) { Account.discoverable.popular.limit(3) }
 | 
					    Rails.cache.fetch('sample_accounts', expires_in: 12.hours) { Account.local.discoverable.popular.limit(3) }
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def version_number
 | 
					  def version_number
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user