aboutsummaryrefslogtreecommitdiffstats
path: root/core
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
commit22839913a54a1c3371d5f690520eb88145efbb25 (patch)
tree845ad8f21870a2b5bab3072b6adf358bc8138819 /core
parent6d12622b2a12823a3a2e983e98bcb4c19c741982 (diff)
downloadprosody-22839913a54a1c3371d5f690520eb88145efbb25.tar.gz
prosody-22839913a54a1c3371d5f690520eb88145efbb25.zip
core.moduleapi: Remove redundant condition
Diffstat (limited to 'core')
-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