From 2d67e042639b295a347fe4b4658fd3fb6382141d Mon Sep 17 00:00:00 2001 From: Cedric Hoelzl Date: Wed, 1 Jul 2020 11:22:52 +0200 Subject: [PATCH] kk --- db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.js b/db.js index 62ea2b6..dad67ea 100644 --- a/db.js +++ b/db.js @@ -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()); }); }