🐛 Fix fixes on listing attachments and improve performance
This commit is contained in:
parent
f91143ce9a
commit
168c089456
@ -18,11 +18,13 @@ func listAttachment(c *fiber.Ctx) error {
|
||||
|
||||
tx := database.C
|
||||
|
||||
var author models.Account
|
||||
if err := database.C.Where("name = ?", c.Query("author")).Error; err != nil {
|
||||
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
||||
} else {
|
||||
tx = tx.Where("account_id = ?", author.ID)
|
||||
if len(c.Query("author")) > 0 {
|
||||
var author models.Account
|
||||
if err := database.C.Where("name = ?", c.Query("author")).First(&author).Error; err != nil {
|
||||
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
||||
} else {
|
||||
tx = tx.Where("account_id = ?", author.ID)
|
||||
}
|
||||
}
|
||||
|
||||
if usage := strings.Split(c.Query("usage"), " "); len(usage) > 0 {
|
||||
|
Loading…
Reference in New Issue
Block a user