Fix incorrect deletion of local accounts imported by overwriting (#13350)
This commit is contained in:
		
							parent
							
								
									0d117c106a
								
							
						
					
					
						commit
						11169367e4
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -64,7 +64,8 @@ class ImportService < BaseService
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def import_relationships!(action, undo_action, overwrite_scope, limit, extra_fields = {})
 | 
					  def import_relationships!(action, undo_action, overwrite_scope, limit, extra_fields = {})
 | 
				
			||||||
    items = @data.take(limit).map { |row| [row['Account address']&.strip, Hash[extra_fields.map { |key, header| [key, row[header]&.strip] }]] }.reject { |(id, _)| id.blank? }
 | 
					    local_domain_suffix = "@#{Rails.configuration.x.local_domain}"
 | 
				
			||||||
 | 
					    items = @data.take(limit).map { |row| [row['Account address']&.strip&.delete_suffix(local_domain_suffix), Hash[extra_fields.map { |key, header| [key, row[header]&.strip] }]] }.reject { |(id, _)| id.blank? }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if @import.overwrite?
 | 
					    if @import.overwrite?
 | 
				
			||||||
      presence_hash = items.each_with_object({}) { |(id, extra), mapping| mapping[id] = [true, extra] }
 | 
					      presence_hash = items.each_with_object({}) { |(id, extra), mapping| mapping[id] = [true, extra] }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue