mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http: http.request() promise now resolves with response (breaking change)
Promise mode is not (widely?) used, changing this now while we can, as it improves usability of the API. The request is now available as response.request, if needed.
This commit is contained in:
parent
209660f212
commit
c340e3ab37
1 changed files with 2 additions and 1 deletions
|
@ -293,7 +293,8 @@ local function new(options)
|
|||
if code == 0 then
|
||||
reject(http_errors.new(body, { request = a }));
|
||||
else
|
||||
resolve({ request = b, response = a });
|
||||
a.request = b;
|
||||
resolve(a);
|
||||
end
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue