mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
[Server] Fix bug
This commit is contained in:
parent
632903c815
commit
ff2d6eb652
1 changed files with 8 additions and 2 deletions
|
@ -93,9 +93,12 @@ function send(data: Buffer, type: string, req: express.Request, res: express.Res
|
|||
app.get('/:id', async (req, res): Promise<void> => {
|
||||
const file = await File.findOne({_id: new mongodb.ObjectID(req.params.id)});
|
||||
|
||||
if (file === null) {
|
||||
if (file == null) {
|
||||
res.status(404).sendFile(__dirname + '/resources/dummy.png');
|
||||
return;
|
||||
} else if (file.data == null) {
|
||||
res.status(400);
|
||||
return;
|
||||
}
|
||||
|
||||
send(file.data.buffer, file.type, req, res);
|
||||
|
@ -104,9 +107,12 @@ app.get('/:id', async (req, res): Promise<void> => {
|
|||
app.get('/:id/:name', async (req, res): Promise<void> => {
|
||||
const file = await File.findOne({_id: new mongodb.ObjectID(req.params.id)});
|
||||
|
||||
if (file === null) {
|
||||
if (file == null) {
|
||||
res.status(404).sendFile(__dirname + '/resources/dummy.png');
|
||||
return;
|
||||
} else if (file.data == null) {
|
||||
res.status(400);
|
||||
return;
|
||||
}
|
||||
|
||||
send(file.data.buffer, file.type, req, res);
|
||||
|
|
Loading…
Reference in a new issue