diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-17 23:02:35 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-17 23:02:35 +0100 |
commit | 0f64dd00ff74eadf0abe04bc48f15203e5c7a0da (patch) | |
tree | 6d41fdff38d4781253be0525b2a434e79be8e116 /plugins/mod_http_files.lua | |
parent | b9135dfdd21b5ebb88a86aed3cf41e40af7e8e7e (diff) | |
download | prosody-0f64dd00ff74eadf0abe04bc48f15203e5c7a0da.tar.gz prosody-0f64dd00ff74eadf0abe04bc48f15203e5c7a0da.zip |
mod_http_files: Pass only the name of the path, get_option_path knows how to deal with it
Diffstat (limited to 'plugins/mod_http_files.lua')
-rw-r--r-- | plugins/mod_http_files.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua index e396df60..b9a84cd3 100644 --- a/plugins/mod_http_files.lua +++ b/plugins/mod_http_files.lua @@ -37,7 +37,7 @@ if not mime_map then }; module:shared("/*/http_files/mime").types = mime_map; - local mime_types, err = open(module:get_option_path("mime_types_file", "/etc/mime.types", prosody.paths.config), "r"); + local mime_types, err = open(module:get_option_path("mime_types_file", "/etc/mime.types", "config"), "r"); if mime_types then local mime_data = mime_types:read("*a"); mime_types:close(); |