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 | 22839913a54a1c3371d5f690520eb88145efbb25 (patch) | |
tree | 845ad8f21870a2b5bab3072b6adf358bc8138819 | |
parent | 6d12622b2a12823a3a2e983e98bcb4c19c741982 (diff) | |
download | prosody-22839913a54a1c3371d5f690520eb88145efbb25.tar.gz prosody-22839913a54a1c3371d5f690520eb88145efbb25.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 |