Browse Source

no "null" exception.

Nicolas Cannasse 19 years ago
parent
commit
d1fac74e92
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/haxe/remoting/SocketConnection.hx

+ 1 - 1
std/haxe/remoting/SocketConnection.hx

@@ -160,7 +160,7 @@ class SocketConnection extends AsyncConnection {
 				f(val);
 				return null;
 			} catch( val : Dynamic ) {
-				return { exc : null };
+				return { exc : val };
 			}
 		}
 		// ---------------------------