aboutsummaryrefslogtreecommitdiffstats
path: root/core/moduleapi.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-10-18 00:49:29 +0200
committerKim Alvefur <zash@zash.se>2018-10-18 00:49:29 +0200
commit2de254acf7c23ae1cf17a08b437590e2199b26a8 (patch)
tree845ad8f21870a2b5bab3072b6adf358bc8138819 /core/moduleapi.lua
parent2bb3772374c54fbf8305763449e30185d4a6807d (diff)
downloadprosody-2de254acf7c23ae1cf17a08b437590e2199b26a8.tar.gz
prosody-2de254acf7c23ae1cf17a08b437590e2199b26a8.zip
core.moduleapi: Remove redundant condition
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r--core/moduleapi.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index 76d9d958..c19594c1 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -287,7 +287,7 @@ end
function api:get_option_path(name, default, parent)
if parent == nil then
- parent = parent or self:get_directory();
+ parent = self:get_directory();
elseif prosody.paths[parent] then
parent = prosody.paths[parent];
end