This commit is contained in:
Cedric Hoelzl 2020-07-01 11:22:52 +02:00
parent 85d91de996
commit 2d67e04263

2
db.js
View File

@ -48,7 +48,7 @@ module.exports = function(name){
this.get_v = function(cid){
return new Promise((resolve, reject)=>{
resolve(this.db.find({id:cid}).value().tracking);
resolve(this.db.find({id:cid}).value());
});
}