mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 17:03:49 +01:00
[Server] Fix bug
This commit is contained in:
parent
632903c815
commit
ff2d6eb652
@ -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 New Issue
Block a user