mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-01-26 22:23:14 -05:00
fix postgres nedbtodb
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
parent
95bbd7157f
commit
7b67b992e2
1
db.js
1
db.js
@ -2028,6 +2028,7 @@ module.exports.CreateDB = function (parent, func) {
|
||||
obj.StoreEvent = function (event, func) {
|
||||
obj.dbCounters.eventsSet++;
|
||||
sqlDbQuery('INSERT INTO events VALUES (DEFAULT, $1, $2, $3, $4, $5, $6) RETURNING id', [event.time, ((typeof event.domain == 'string') ? event.domain : null), event.action, event.nodeid ? event.nodeid : null, event.userid ? event.userid : null, event], function (err, docs) {
|
||||
if(func){ func(); }
|
||||
if (docs.id) {
|
||||
for (var i in event.ids) {
|
||||
if (event.ids[i] != '*') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user