Skip to content

Commit 78b722b

Browse files
committed
fix url path
1 parent 138cc22 commit 78b722b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/downloader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ router.get('/:uuid', async (req, res) => {
1414
}
1515
});
1616

17-
router.get('/files/download/:uuid', async (req, res) => {
17+
router.get('/download/:uuid', async (req, res) => {
1818
// Extract link and get file from storage send download stream
1919
const file = await File.findOne({ uuid: req.params.uuid });
2020
// Link expired

0 commit comments

Comments
 (0)