diff --git a/src/as/com/threerings/util/ObjectMarshaller.as b/src/as/com/threerings/util/ObjectMarshaller.as index da82ca8c9..6bdae23a1 100644 --- a/src/as/com/threerings/util/ObjectMarshaller.as +++ b/src/as/com/threerings/util/ObjectMarshaller.as @@ -196,10 +196,9 @@ public class ObjectMarshaller } // then, continue on with sub-property check (below) - } else { var type :String = typeof(value); - if (type == "number" || type == "string" || type == "boolean" ) { + if (type == "number" || type == "string" || type == "boolean" || type == "xml") { return null; // kosher! } if (-1 != VALID_CLASSES.indexOf(ClassUtil.getClassName(value))) {