diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-18 00:49:29 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-18 00:49:29 +0200 |
commit | 2de254acf7c23ae1cf17a08b437590e2199b26a8 (patch) | |
tree | 845ad8f21870a2b5bab3072b6adf358bc8138819 | |
parent | 2bb3772374c54fbf8305763449e30185d4a6807d (diff) | |
download | prosody-2de254acf7c23ae1cf17a08b437590e2199b26a8.tar.gz prosody-2de254acf7c23ae1cf17a08b437590e2199b26a8.zip |
core.moduleapi: Remove redundant condition
-rw-r--r-- | core/moduleapi.lua | 2 |
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 |