From 4eee590a04b109011fed3d78e48aaff488768790 Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Sat, 2 Oct 2021 10:59:41 +0200 Subject: [PATCH] LVGL fix init display desctriptor --- tasmota/xdrv_52_3_berry_lvgl.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_52_3_berry_lvgl.ino b/tasmota/xdrv_52_3_berry_lvgl.ino index f3be55197..76747fcb0 100644 --- a/tasmota/xdrv_52_3_berry_lvgl.ino +++ b/tasmota/xdrv_52_3_berry_lvgl.ino @@ -716,7 +716,7 @@ extern "C" { if (argc == 0 || (argc == 1 && be_isstring(vm, 1))) { const char * uconfig = nullptr; if (argc == 1) { - be_tostring(vm, 1); + uconfig = be_tostring(vm, 1); } start_lvgl(uconfig); be_return_nil(vm);