diff options
author | Kim Alvefur <zash@zash.se> | 2016-12-01 03:22:42 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-12-01 03:22:42 +0100 |
commit | 3d31b0f2ebd4b806ea1d084bf44b9ee2ac594655 (patch) | |
tree | 1f1fdf5f957cd1815d62a344ac53b1e81eff657b /plugins | |
parent | 42f67b2a729db0b48129109ef9cd41f0fd476ec1 (diff) | |
download | prosody-3d31b0f2ebd4b806ea1d084bf44b9ee2ac594655.tar.gz prosody-3d31b0f2ebd4b806ea1d084bf44b9ee2ac594655.zip |
mod_storage_sql: Include missing parameter table key 'port'
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index fa241ed9..aef7ff8b 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -447,7 +447,7 @@ local function normalize_params(params) username = params.username; password = params.password; host = params.host; - params.port; + port = params.port; }; end |