aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-11-09 23:15:37 +0100
committerKim Alvefur <zash@zash.se>2018-11-09 23:15:37 +0100
commita9c5f66e07ad7a880262140bd3dc5d3966455a26 (patch)
treedd5729ed6e497941df021ad7d9f2f66af1e80ea8 /net
parentac7682bc92fdd4b7f6ff3a323659dabb649c1afd (diff)
parent60aa42033a2f87013638a7318fb1ea8997e074a2 (diff)
downloadprosody-a9c5f66e07ad7a880262140bd3dc5d3966455a26.tar.gz
prosody-a9c5f66e07ad7a880262140bd3dc5d3966455a26.zip
Merge 0.11->trunk
Diffstat (limited to 'net')
-rw-r--r--net/http.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/net/http.lua b/net/http.lua
index b401b040..fe5250ac 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -24,7 +24,6 @@ local tonumber, tostring, traceback =
tonumber, tostring, debug.traceback;
local xpcall = require "util.xpcall".xpcall;
local error = error
-local setmetatable = setmetatable;
local log = require "util.logger".init("http");
@@ -273,7 +272,12 @@ local function new(options)
options = options;
request = request;
new = options and function (new_options)
- return new(setmetatable(new_options, { __index = options }));
+ local final_options = {};
+ for k, v in pairs(options) do final_options[k] = v; end
+ if new_options then
+ for k, v in pairs(new_options) do final_options[k] = v; end
+ end
+ return new(final_options);
end or new;
events = events.new();
};