소스 검색

minor fix

Nicolas Cannasse 18 년 전
부모
커밋
f05a49d93c
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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;
 	}