🐛 Fix didn't unmark publisher avatar
This commit is contained in:
parent
76c78e0c01
commit
0126361b8d
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user