connectinArgs.Database > connectinArgs.database typo (#6576)

PTR committed Dec 2, 2024 at 15:06 UTC f9228ad0eb1dff256f246ffec47233d2e1338f71
1 file changed +1 -1
db.js
+1 -1
@@ -909,7 +909,7 @@ module.exports.CreateDB = function (parent, func) {
909 } else if (parent.args.postgres) {
910 // Postgres SQL
911 let connectinArgs = parent.args.postgres;
912 - connectinArgs.Database = (databaseName = (connectinArgs.database != null) ? connectinArgs.database : 'meshcentral');
912 + connectinArgs.database = (databaseName = (connectinArgs.database != null) ? connectinArgs.database : 'meshcentral');
913
914 let DatastoreTest;
915 obj.databaseType = DB_POSTGRESQL;