🐛 Fix flags

This commit is contained in:
LittleSheep 2025-03-09 20:59:09 +08:00
parent 63c42befb4
commit ba6e827cf8

View File

@ -9,7 +9,7 @@ import (
func NewFlag(post models.Post, account uint) (models.PostFlag, error) {
var flag models.PostFlag
if err := database.C.Where("post_id = ? AND account_id = ?", post.ID, account).Error; err == nil {
if err := database.C.Where("post_id = ? AND account_id = ?", post.ID, account).First(&flag).Error; err == nil {
return flag, fmt.Errorf("flag already exists")
}
flag = models.PostFlag{