send 404 on messing binary
This commit is contained in:
parent
40117dab37
commit
0de18e89fc
|
@ -24,7 +24,7 @@ func (h *MediaHandler) Handle(c *fiber.Ctx) error {
|
||||||
}
|
}
|
||||||
binary, err := h.binaryService.FindById(id)
|
binary, err := h.binaryService.FindById(id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return c.SendStatus(fiber.StatusNotFound)
|
||||||
}
|
}
|
||||||
c.Set("Content-Type", binary.Mime())
|
c.Set("Content-Type", binary.Mime())
|
||||||
return c.Send(binary.Data)
|
return c.Send(binary.Data)
|
||||||
|
|
Loading…
Reference in New Issue