Fixed crash

This commit is contained in:
Jonas Widen 2025-03-16 18:34:42 +01:00
parent 6a3d484486
commit f299d0fae7

View File

@ -23,9 +23,29 @@ local function async_request(url, payload, callback)
return
end
-- Resolve hostname to IP
vim.loop.getaddrinfo(host, "443", {
family = "inet",
socktype = "stream",
protocol = "tcp"
}, function(err, res)
if err then
vim.schedule(function()
callback(nil, "DNS resolution error: " .. err)
end)
return
end
if not res or #res == 0 then
vim.schedule(function()
callback(nil, "Could not resolve hostname")
end)
return
end
local client = vim.loop.new_tcp()
client:connect(host, 443, function(err)
client:connect(res[1].addr, res[1].port, function(err)
if err then
vim.schedule(function()
callback(nil, "Connection error: " .. err)
@ -85,6 +105,7 @@ local function async_request(url, payload, callback)
end)
end)
end)
end)
end
function M.get_response(prompt, context, callback)