summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/processing/status/fave.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/status/fave.go b/internal/processing/status/fave.go
index 70560899b..983f12b6a 100644
--- a/internal/processing/status/fave.go
+++ b/internal/processing/status/fave.go
@@ -65,7 +65,7 @@ func (p *Processor) getFaveableStatus(
fave, err := p.state.DB.GetStatusFave(ctx, requester.ID, target.ID)
if err != nil && !errors.Is(err, db.ErrNoEntries) {
- err = fmt.Errorf("getFaveTarget: error checking existing fave: %w", err)
+ err = gtserror.Newf("error checking existing fave: %w", err)
return nil, nil, gtserror.NewErrorInternalError(err)
}