Skip to content

Commit

Permalink
Fix db reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris committed Nov 7, 2024
1 parent 2f01e4c commit 971724e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/rest/v1/db/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class DbController {
}

if (result) {
const savedRecord = await ds.get(record._id, {})
const savedRecord = await db.get(record._id, {})
res.json({
success: true,
record: savedRecord,
Expand Down

0 comments on commit 971724e

Please sign in to comment.