various fixes

This commit is contained in:
janis
2023-08-28 17:09:56 +02:00
parent a0984782a8
commit 466a4fbd8b
9 changed files with 54 additions and 11 deletions

View File

@@ -1 +1 @@
{"test4":{"secAr4s7":{"id":"secAr4s7","component":1,"ticketOption":"1","eventID":"test4","category":"1","name":"Row 5, Seat 8"}}}
{"test4":{"secAr4s7":{"id":"secAr4s7","component":1,"ticketOption":"1","eventID":"test4","category":"1","name":"Row 5, Seat 8"},"secAr6s14":{"id":"secAr6s14","component":1,"ticketOption":"2","eventID":"test4","category":"1","name":"Row 7, Seat 15"}}}

View File

@@ -47,7 +47,6 @@ module.exports.getData = ( db ) => {
};
module.exports.writeDataSimple = ( db, column, searchQuery, data ) => {
console.log( 'writingData' );
return new Promise( ( resolve, reject ) => {
dbh.query( { 'command': 'checkDataAvailability', 'property': column, 'searchQuery': searchQuery }, dbRef[ db ] ).then( res => {
if ( res.length > 0 ) {

View File

@@ -19,7 +19,10 @@ class JSONDB {
}
connect () {
let data = JSON.parse( fs.readFileSync( path.join( __dirname + '/data/db.json' ) ) );
let data = {};
try {
JSON.parse( fs.readFileSync( path.join( __dirname + '/data/db.json' ) ) );
} catch ( err ) {}
this.db = data[ 'db' ] ?? { 'libreevent_temp': {}, 'libreevent_admin': {}, 'libreevent_orders': {}, 'libreevent_users': {} };
this.dbIndex = data[ 'index' ] ?? { 'libreevent_temp': 0, 'libreevent_admin': 0, 'libreevent_orders': 0, 'libreevent_users': 0 };
this.db[ 'libreevent_temp' ] = {};