mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 09:03:21 +00:00 
			
		
		
		
	GUACAMOLE-1728: Allow Null User Object attributes to be saved.
This commit is contained in:
		
				
					committed by
					
						 Mike Jumper
						Mike Jumper
					
				
			
			
				
	
			
			
			
						parent
						
							ff4854d8f7
						
					
				
				
					commit
					2f9ff87404
				
			| @@ -145,8 +145,9 @@ public abstract class DirectoryObjectTranslator<InternalType extends Identifiabl | ||||
|                 String attributeValue = attributes.get(attributeName); | ||||
|  | ||||
|                 // Include attribute value within filtered map only if | ||||
|                 // (1) defined and (2) present within provided map | ||||
|                 if (attributeValue != null) | ||||
|                 // defined or present within provided map | ||||
|                 if (attributeValue != null ||  | ||||
|                         attributes.containsKey(attributeName)) | ||||
|                     filtered.put(attributeName, attributeValue); | ||||
|  | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user