diff options
| author | julian laplace <julescarbon@gmail.com> | 2022-10-06 16:25:18 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2022-10-06 16:25:18 +0200 |
| commit | 8835b55b3dc0b2368f68215ca86b8f21196ee4ee (patch) | |
| tree | 5af675bdc6d00ac645470781acf1f23fd133210f | |
| parent | c00f021e48f2414f3c94e18712a3565fe2b51803 (diff) | |
fix json db
| -rw-r--r-- | bucky/search/bdb.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bucky/search/bdb.js b/bucky/search/bdb.js index cb5ebbd..0495666 100644 --- a/bucky/search/bdb.js +++ b/bucky/search/bdb.js @@ -97,7 +97,7 @@ function jsondb(fn) { db[term] = serialized; }, get: function (term) { - db[term]; + return db[term]; }, }; } |
