Browse Source

minor fix

Nicolas Cannasse 18 năm trước cách đây
mục cha
commit
f05a49d93c
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      std/haxe/remoting/DelayedConnection.hx

+ 1 - 0
std/haxe/remoting/DelayedConnection.hx

@@ -35,6 +35,7 @@ class DelayedConnection extends AsyncConnection, implements Dynamic<DelayedConne
 
 	override function __resolve( field : String ) : AsyncConnection {
 		var d = new DelayedConnection(__data,__path.copy());
+		d.__error = __error;
 		d.__path.push(field);
 		return d;
 	}