mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-96: Objects should be decorated upon add(), not undecorated (they by definition come from an external source, not the decorated extension).
This commit is contained in:
@@ -122,7 +122,7 @@ public abstract class DecoratingDirectory<ObjectType extends Identifiable>
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void add(ObjectType object) throws GuacamoleException {
|
public void add(ObjectType object) throws GuacamoleException {
|
||||||
super.add(undecorate(object));
|
super.add(decorate(object));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Reference in New Issue
Block a user