Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 18e476b

Browse files
committed
Remove suprious ()
1 parent b2877b0 commit 18e476b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/orbitdb-api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class OrbitdbAPI extends Express {
145145
this.get('/db/:dbname/value', asyncMiddleware( async (req, res, next) => {
146146
let db, val
147147
db = await dbm.get(req.params.dbname)
148-
val = await db.value()
148+
val = await db.value
149149
return res.json(val)
150150
}));
151151

0 commit comments

Comments
 (0)