From 20bb90e77a26efb905b35540aa93fe574d39bb2b Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 31 Jul 2025 20:51:30 +0300 Subject: [PATCH] oh again update Get example --- com/Net/GetExpl.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/com/Net/GetExpl.lua b/com/Net/GetExpl.lua index e201b3b..ddf4bd6 100644 --- a/com/Net/GetExpl.lua +++ b/com/Net/GetExpl.lua @@ -1,4 +1,5 @@ local reqAddr +local logReq = true if In.Params and In.Params.url then reqAddr = In.Params.url @@ -10,7 +11,7 @@ else return end -local resp = Net.Http.Get(true, reqAddr) +local resp = Net.Http.Get(logReq, reqAddr) if resp then Out.Result.answer = { status = resp.status,