mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUACAMOLE-1728: Merge correction to attribute filtering (null values should be allowed).
This commit is contained in:
@@ -145,8 +145,9 @@ public abstract class DirectoryObjectTranslator<InternalType extends Identifiabl
|
|||||||
String attributeValue = attributes.get(attributeName);
|
String attributeValue = attributes.get(attributeName);
|
||||||
|
|
||||||
// Include attribute value within filtered map only if
|
// Include attribute value within filtered map only if
|
||||||
// (1) defined and (2) present within provided map
|
// defined or present within provided map
|
||||||
if (attributeValue != null)
|
if (attributeValue != null ||
|
||||||
|
attributes.containsKey(attributeName))
|
||||||
filtered.put(attributeName, attributeValue);
|
filtered.put(attributeName, attributeValue);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user