Small fixes
This commit is contained in:
parent
3b50f2dad5
commit
5a882304a5
@ -416,6 +416,8 @@ class MariaDB
|
||||
if (!this.ready)
|
||||
return Promise.reject(new Error('MariaDB not ready'));
|
||||
|
||||
query = query.trim();
|
||||
|
||||
let batch = false;
|
||||
if (values && typeof values.some === 'function')
|
||||
batch = values.some(val => val instanceof Array);
|
||||
|
@ -50,6 +50,7 @@ class MongoDB
|
||||
#config: MongoOptions;
|
||||
#logger: ILogger;
|
||||
#URI: string;
|
||||
#load: boolean;
|
||||
|
||||
#db: Db | null;
|
||||
#_client: MongoClient;
|
||||
@ -69,6 +70,7 @@ class MongoDB
|
||||
this.#config = config;
|
||||
this.#db = null; // DB connection
|
||||
this.#_database = database; // Which database to connect to
|
||||
this.#load = config.load ?? true;
|
||||
|
||||
this.#logger = server.createLogger(this, config.loggerOptions);
|
||||
|
||||
@ -121,7 +123,7 @@ class MongoDB
|
||||
async init ()
|
||||
{
|
||||
|
||||
if (!this.#config.load)
|
||||
if (!this.#load)
|
||||
return this.#logger.info('Not loading MongoDB');
|
||||
|
||||
if (this.#db)
|
||||
|
Loading…
Reference in New Issue
Block a user