summaryrefslogtreecommitdiff
path: root/internal/processing/media/delete.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/processing/media/delete.go')
-rw-r--r--internal/processing/media/delete.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/internal/processing/media/delete.go b/internal/processing/media/delete.go
index c0f8aa948..31e733bc7 100644
--- a/internal/processing/media/delete.go
+++ b/internal/processing/media/delete.go
@@ -39,10 +39,8 @@ func (p *processor) Delete(ctx context.Context, mediaAttachmentID string) gtserr
}
// delete the attachment
- if err := p.db.DeleteByID(ctx, mediaAttachmentID, attachment); err != nil {
- if err != db.ErrNoEntries {
- errs = append(errs, fmt.Sprintf("remove attachment: %s", err))
- }
+ if err := p.db.DeleteByID(ctx, mediaAttachmentID, attachment); err != nil && !errors.Is(err, db.ErrNoEntries) {
+ errs = append(errs, fmt.Sprintf("remove attachment: %s", err))
}
if len(errs) != 0 {