Fix Status.remote scope matching *all* statuses (#11265)
This commit is contained in:
		
							parent
							
								
									c4a6b6568f
								
							
						
					
					
						commit
						e31bedc3a8
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -82,7 +82,7 @@ class Status < ApplicationRecord
 | 
				
			||||||
  default_scope { recent }
 | 
					  default_scope { recent }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  scope :recent, -> { reorder(id: :desc) }
 | 
					  scope :recent, -> { reorder(id: :desc) }
 | 
				
			||||||
  scope :remote, -> { where(local: false).or(where.not(uri: nil)) }
 | 
					  scope :remote, -> { where(local: false).where.not(uri: nil) }
 | 
				
			||||||
  scope :local,  -> { where(local: true).or(where(uri: nil)) }
 | 
					  scope :local,  -> { where(local: true).or(where(uri: nil)) }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  scope :without_replies, -> { where('statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id') }
 | 
					  scope :without_replies, -> { where('statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id') }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue