mirror of
				https://github.com/matrix-org/synapse.git
				synced 2025-11-04 02:01:03 +01:00 
			
		
		
		
	Also check for dict since sometimes they aren't frozen
This commit is contained in:
		
							parent
							
								
									cea4e4e7b2
								
							
						
					
					
						commit
						6d4e6d4cba
					
				@ -132,7 +132,7 @@ def _copy_field(src, dst, field):
 | 
			
		||||
    key_to_move = field.pop(-1)
 | 
			
		||||
    sub_dict = src
 | 
			
		||||
    for sub_field in field:  # e.g. sub_field => "content"
 | 
			
		||||
        if sub_field in sub_dict and type(sub_dict[sub_field]) == frozendict:
 | 
			
		||||
        if sub_field in sub_dict and type(sub_dict[sub_field]) in [dict, frozendict]:
 | 
			
		||||
            sub_dict = sub_dict[sub_field]
 | 
			
		||||
        else:
 | 
			
		||||
            return
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user