alsmanager_lib 1.0.72 → 1.0.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/modules.js +3 -2
  2. package/package.json +1 -1
package/lib/modules.js CHANGED
@@ -7906,6 +7906,7 @@ function exportDBSQLSQLite(db_path, dump_path, dump_filename) {
7906
7906
  fileName = dump_filename;
7907
7907
  }
7908
7908
 
7909
+
7909
7910
  var fileOut = path.join(dump_path, fileName);
7910
7911
 
7911
7912
  let cmd = "sqlite3 " + db_path + " ";
@@ -7933,10 +7934,10 @@ function exportDBSQL(db_used, db_path, dump_path, dump_filename) {
7933
7934
  if (db_used) {
7934
7935
  switch (db_used) {
7935
7936
  case 'SQLITE':
7936
- query = exportDBSQLSQLite(db_path, db_path, dump_path, dump_filename);
7937
+ query = exportDBSQLSQLite(db_path, dump_path, dump_filename);
7937
7938
  break;
7938
7939
  case 'MYSQL':
7939
- query = exportDBSQLMySQL(db_path, db_path, dump_path, dump_filename);
7940
+ query = exportDBSQLMySQL(db_path, dump_path, dump_filename);
7940
7941
  break;
7941
7942
  }
7942
7943
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alsmanager_lib",
3
- "version": "1.0.72",
3
+ "version": "1.0.74",
4
4
  "description": "Funzioni per ALSManager",
5
5
  "license": "ISC",
6
6
  "author": "Luca Cattani",