mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-26 23:25:53 -05:00
fix mariadb parsing with mysql (#5488)
This commit is contained in:
parent
fed8f021f2
commit
13ead1ddeb
6
db.js
6
db.js
@ -1244,7 +1244,11 @@ module.exports.CreateDB = function (parent, func) {
|
|||||||
var docs = [];
|
var docs = [];
|
||||||
for (var i in results) {
|
for (var i in results) {
|
||||||
if (results[i].doc) {
|
if (results[i].doc) {
|
||||||
docs.push(results[i].doc);
|
if (typeof results[i].doc == 'string') {
|
||||||
|
docs.push(JSON.parse(results[i].doc));
|
||||||
|
} else {
|
||||||
|
docs.push(results[i].doc);
|
||||||
|
}
|
||||||
} else if ((results.length == 1) && (results[i]['COUNT(doc)'] != null)) {
|
} else if ((results.length == 1) && (results[i]['COUNT(doc)'] != null)) {
|
||||||
// This is a SELECT COUNT() operation
|
// This is a SELECT COUNT() operation
|
||||||
docs = results[i]['COUNT(doc)'];
|
docs = results[i]['COUNT(doc)'];
|
||||||
|
Loading…
Reference in New Issue
Block a user