Fixed crash

This commit is contained in:
Jonas Widen 2025-03-16 18:35:50 +01:00
parent f299d0fae7
commit 9d3f4c8bff

View File

@ -53,8 +53,8 @@ local function async_request(url, payload, callback)
return return
end end
local ssl = vim.loop.new_tls() -- Create TLS wrapper
ssl:wrap(client) local tls_client = vim.loop.new_tls_wrap(client)
local request = string.format( local request = string.format(
"POST %s HTTP/1.1\r\n" .. "POST %s HTTP/1.1\r\n" ..
@ -68,7 +68,7 @@ local function async_request(url, payload, callback)
local response = "" local response = ""
ssl:write(request, function(err) tls_client:write(request, function(err)
if err then if err then
vim.schedule(function() vim.schedule(function()
callback(nil, "Write error: " .. err) callback(nil, "Write error: " .. err)
@ -76,7 +76,7 @@ local function async_request(url, payload, callback)
return return
end end
ssl:read_start(function(err, chunk) tls_client:read_start(function(err, chunk)
if err then if err then
vim.schedule(function() vim.schedule(function()
callback(nil, "Read error: " .. err) callback(nil, "Read error: " .. err)
@ -99,7 +99,7 @@ local function async_request(url, payload, callback)
end end
end) end)
ssl:close() tls_client:close()
client:close() client:close()
end end
end) end)