From 76bb3730ef6326f0682c7f806c25b30adcbf5e4e Mon Sep 17 00:00:00 2001 From: Evgeny Kochetkov Date: Thu, 1 Oct 2020 16:49:27 +0300 Subject: [PATCH] fix(stdlib): fix esp8266-mcu/lan-ip implementation --- workspace/__lib__/xod-dev/esp8266-mcu/lan-ip/patch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/__lib__/xod-dev/esp8266-mcu/lan-ip/patch.cpp b/workspace/__lib__/xod-dev/esp8266-mcu/lan-ip/patch.cpp index 98b088d2c..040ddb315 100644 --- a/workspace/__lib__/xod-dev/esp8266-mcu/lan-ip/patch.cpp +++ b/workspace/__lib__/xod-dev/esp8266-mcu/lan-ip/patch.cpp @@ -1,6 +1,6 @@ node { void evaluate(Context ctx) { auto inet = getValue(ctx); - emitValue(ctx, (typeof_IP)inet->localIP()); + emitValue(ctx, (typeof_IP)inet.wifi->localIP()); } }