plugins: Use boolean config method in some places

Because it makes sense and improves feedback via logging
This commit is contained in:
Kim Alvefur 2023-07-18 12:38:16 +02:00
parent 41ea0ee4a4
commit 91d95d4c33
3 changed files with 7 additions and 9 deletions

View file

@ -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);