Update moved-to property when it's removed too (#6160)
* Fix #6140 - Update moved-to property when it's removed too * Remove trailing whitespace
This commit is contained in:
		
							parent
							
								
									d60fd87e01
								
							
						
					
					
						commit
						d319b3dbe4
					
				@ -74,7 +74,7 @@ class ActivityPub::ProcessAccountService < BaseService
 | 
				
			|||||||
    @account.statuses_count    = outbox_total_items    if outbox_total_items.present?
 | 
					    @account.statuses_count    = outbox_total_items    if outbox_total_items.present?
 | 
				
			||||||
    @account.following_count   = following_total_items if following_total_items.present?
 | 
					    @account.following_count   = following_total_items if following_total_items.present?
 | 
				
			||||||
    @account.followers_count   = followers_total_items if followers_total_items.present?
 | 
					    @account.followers_count   = followers_total_items if followers_total_items.present?
 | 
				
			||||||
    @account.moved_to_account  = moved_account         if @json['movedTo'].present?
 | 
					    @account.moved_to_account  = @json['movedTo'].present? ? moved_account : nil
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def after_protocol_change!
 | 
					  def after_protocol_change!
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user