Skip to content

Commit

Permalink
all tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
vsun757 committed Feb 26, 2024
1 parent 6b56826 commit 2c2f67f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/collection-indexes-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ exports.updateFull = async function(req, res) {

// Update the collection index
try {
const collectionIndex = collectionIndexService.updateFull(id, collectionIndexData);
const collectionIndex = await collectionIndexService.updateFull(id, collectionIndexData);
if (!collectionIndex) {
return res.status(404).send('Collection index not found.');
} else {
Expand Down

0 comments on commit 2c2f67f

Please sign in to comment.