aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlookshe <github@lookshe.org>2018-01-29 12:06:27 +0100
committerlookshe <github@lookshe.org>2018-01-29 12:06:27 +0100
commitaaa63c4d17f6c869fc4a6c52d48304aae68b5651 (patch)
tree073acdd7c6b174711c65c08a005cd661af129aff
parentf9b6dfabdc218dcbf4e0674ff64950a2d7a44201 (diff)
fixed copy paste error
-rw-r--r--prosody-module/mod_http_upload_external/mod_http_upload_external.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosody-module/mod_http_upload_external/mod_http_upload_external.lua b/prosody-module/mod_http_upload_external/mod_http_upload_external.lua
index 068961e..001894c 100644
--- a/prosody-module/mod_http_upload_external/mod_http_upload_external.lua
+++ b/prosody-module/mod_http_upload_external/mod_http_upload_external.lua
@@ -17,7 +17,7 @@ local filetransfer_manager_ui_url = module:get_option("filetransfer_manager_ui_u
-- imports
require"https";
local st = require"util.stanza";
-local http = (string.len(url) >= 5 and string.sub(url,1,5) == "https") and require"ssl.https" or require"socket.http";
+local http = (string.len(external_url) >= 5 and string.sub(external_url,1,5) == "https") and require"ssl.https" or require"socket.http";
local json = require"util.json";
local dataform = require "util.dataforms".new;
local ltn12 = require"ltn12";