forked from FoundKeyGang/FoundKey
fileserver - fix dummy path
This commit is contained in:
parent
a5160a1bba
commit
2ce3179d50
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ app.get('/:id', async (req, res) => {
|
||||||
const file = await DriveFile.findOne({ _id: fileId });
|
const file = await DriveFile.findOne({ _id: fileId });
|
||||||
|
|
||||||
if (file == null) {
|
if (file == null) {
|
||||||
res.status(404).sendFile(`${__dirname} / assets / dummy.png`);
|
res.status(404).sendFile(`${__dirname}/assets/dummy.png`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue