mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-26 07:05:52 -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 = [];
|
||||
for (var i in results) {
|
||||
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)) {
|
||||
// This is a SELECT COUNT() operation
|
||||
docs = results[i]['COUNT(doc)'];
|
||||
|
Loading…
Reference in New Issue
Block a user