Fix unnecessary order (#5807)
This commit is contained in:
		
							parent
							
								
									019c39bf1d
								
							
						
					
					
						commit
						3db3ca1258
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -175,7 +175,7 @@ class Status < ApplicationRecord | |||
|     end | ||||
| 
 | ||||
|     def reblogs_map(status_ids, account_id) | ||||
|       select('reblog_of_id').where(reblog_of_id: status_ids).where(account_id: account_id).map { |s| [s.reblog_of_id, true] }.to_h | ||||
|       select('reblog_of_id').where(reblog_of_id: status_ids).where(account_id: account_id).reorder(nil).map { |s| [s.reblog_of_id, true] }.to_h | ||||
|     end | ||||
| 
 | ||||
|     def mutes_map(conversation_ids, account_id) | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue