badmfck-api-server 2.1.8 → 2.1.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -83,7 +83,7 @@ async function Initializer(services) {
83
83
  exports.Initializer = Initializer;
84
84
  class APIService extends BaseService_1.BaseService {
85
85
  static nextLogID = 0;
86
- version = "2.1.8";
86
+ version = "2.1.9";
87
87
  options;
88
88
  monitor;
89
89
  monitorIndexFile;
@@ -418,7 +418,7 @@ class MysqlService extends BaseService_1.BaseService {
418
418
  }
419
419
  async queryAsync(conn, query) {
420
420
  try {
421
- const result = await conn.execute(query);
421
+ const result = await conn.query(query);
422
422
  return {
423
423
  err: null,
424
424
  results: result[0],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "badmfck-api-server",
3
- "version": "2.1.8",
3
+ "version": "2.1.9",
4
4
  "description": "Simple API http server based on express",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",