summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bucky/search/bdb.js2
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];
},
};
}