mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
plugins: Use boolean config method in some places
Because it makes sense and improves feedback via logging
This commit is contained in:
parent
41ea0ee4a4
commit
91d95d4c33
3 changed files with 7 additions and 9 deletions
|
@ -908,7 +908,7 @@ function module.load()
|
|||
if not engine then
|
||||
module:log("debug", "Creating new engine %s", db_uri);
|
||||
engine = sql:create_engine(params, function (engine) -- luacheck: ignore 431/engine
|
||||
if module:get_option("sql_manage_tables", true) then
|
||||
if module:get_option_boolean("sql_manage_tables", true) then
|
||||
-- Automatically create table, ignore failure (table probably already exists)
|
||||
-- FIXME: we should check in information_schema, etc.
|
||||
create_table(engine);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue