diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/url.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/url.lua b/src/url.lua index e1fa2bc..243ee1c 100644 --- a/src/url.lua +++ b/src/url.lua | |||
@@ -110,6 +110,7 @@ local function absolute_path(base_path, relative_path) | |||
110 | if string.sub(relative_path, 1, 1) == "/" then | 110 | if string.sub(relative_path, 1, 1) == "/" then |
111 | return remove_dot_components(relative_path) end | 111 | return remove_dot_components(relative_path) end |
112 | base_path = base_path:gsub("[^/]*$", "") | 112 | base_path = base_path:gsub("[^/]*$", "") |
113 | if not base_path:find'/$' then base_path = base_path .. '/' end | ||
113 | local path = base_path .. relative_path | 114 | local path = base_path .. relative_path |
114 | path = remove_dot_components(path) | 115 | path = remove_dot_components(path) |
115 | return path | 116 | return path |