From cb24d4adfbe562597f6faf655780c561750932a9 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Tue, 8 May 2007 17:41:22 +0000 Subject: [PATCH] Bugfix: Return to decoding the data when we read it in, so that it's decoded for applyToObject(). git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@297 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/as/com/threerings/ezgame/data/PropertySetEvent.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/ezgame/data/PropertySetEvent.as b/src/as/com/threerings/ezgame/data/PropertySetEvent.as index 87b1334f..530e7d7c 100644 --- a/src/as/com/threerings/ezgame/data/PropertySetEvent.as +++ b/src/as/com/threerings/ezgame/data/PropertySetEvent.as @@ -62,7 +62,7 @@ public class PropertySetEvent extends NamedEvent */ public function getValue () :Object { - return EZObjectMarshaller.decode(_data); + return _data; } /** @@ -86,7 +86,7 @@ public class PropertySetEvent extends NamedEvent { super.readObject(ins); _index = ins.readInt(); - _data = (ins.readObject() as Object); + _data = EZObjectMarshaller.decode(ins.readObject()); } // from interface Streamable