git » sdk » commit fb6af89

Better console.log of this error

author Stephen Paul Weber
2026-09-01 13:23:57 UTC
committer Stephen Paul Weber
2026-09-01 13:23:57 UTC
parent f39c44e16b71153896290c0e04226ae1d5027b18

Better console.log of this error

As it was the generated code was stringifying it

borogove/Client.hx +1 -1

diff --git a/borogove/Client.hx b/borogove/Client.hx
index 03ae181..879a568 100644
--- a/borogove/Client.hx
+++ b/borogove/Client.hx
@@ -2423,7 +2423,7 @@ class Client extends EventEmitter {
 					if (callback != null) callback(true);
 				}
 			},
-			(e) -> {
+			(e: Dynamic) -> {
 				trace("SYNC: error", e);
 				callback(false);
 			});