mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUAC-964: Maintain consistency regarding null vs "ROOT" for connection group identifiers.
This commit is contained in:
@@ -108,7 +108,7 @@ public class MySQLConnection extends AbstractConnection {
|
|||||||
if (parentID != null)
|
if (parentID != null)
|
||||||
this.setParentIdentifier(String.valueOf(parentID));
|
this.setParentIdentifier(String.valueOf(parentID));
|
||||||
else
|
else
|
||||||
this.setParentIdentifier(null);
|
this.setParentIdentifier(MySQLConstants.CONNECTION_GROUP_ROOT_IDENTIFIER);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -129,7 +129,7 @@ public class MySQLConnectionGroup extends AbstractConnectionGroup {
|
|||||||
if (parentID != null)
|
if (parentID != null)
|
||||||
this.setParentIdentifier(String.valueOf(parentID));
|
this.setParentIdentifier(String.valueOf(parentID));
|
||||||
else
|
else
|
||||||
this.setParentIdentifier(null);
|
this.setParentIdentifier(MySQLConstants.CONNECTION_GROUP_ROOT_IDENTIFIER);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user