From 0126361b8d388f2faee311f3795a50c9d1259915 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Tue, 11 Mar 2025 00:07:45 +0800 Subject: [PATCH] :bug: Fix didn't unmark publisher avatar --- pkg/internal/services/publishers.go | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/pkg/internal/services/publishers.go b/pkg/internal/services/publishers.go index 58bb375..7e8f9ac 100644 --- a/pkg/internal/services/publishers.go +++ b/pkg/internal/services/publishers.go @@ -139,5 +139,22 @@ func DeletePublisher(publisher models.Publisher) error { return err } - return tx.Commit().Error + err := tx.Commit().Error + if err == nil { + var attachments []string + if len(publisher.Avatar) > 0 { + attachments = append(attachments, publisher.Avatar) + } + if len(publisher.Banner) > 0 { + attachments = append(attachments, publisher.Banner) + } + if len(attachments) > 0 { + filekit.CountAttachmentUsage(gap.Nx, &proto.UpdateUsageRequest{ + Rid: attachments, + Delta: -1, + }) + } + } + + return err }