mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Rename variable to avoid name clash [luacheck]
This commit is contained in:
parent
35efbc8a8d
commit
8d82efbca7
1 changed files with 3 additions and 3 deletions
|
@ -128,9 +128,9 @@ function serve(opts)
|
||||||
data = data.data;
|
data = data.data;
|
||||||
elseif attr.mode == "directory" and path then
|
elseif attr.mode == "directory" and path then
|
||||||
if full_path:sub(-1) ~= "/" then
|
if full_path:sub(-1) ~= "/" then
|
||||||
local path = { is_absolute = true, is_directory = true };
|
local dir_path = { is_absolute = true, is_directory = true };
|
||||||
for dir in orig_path:gmatch("[^/]+") do path[#path+1]=dir; end
|
for dir in orig_path:gmatch("[^/]+") do dir_path[#dir_path+1]=dir; end
|
||||||
response_headers.location = build_path(path);
|
response_headers.location = build_path(dir_path);
|
||||||
return 301;
|
return 301;
|
||||||
end
|
end
|
||||||
for i=1,#dir_indices do
|
for i=1,#dir_indices do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue