diff options
Diffstat (limited to 'internal/timeline/prepare.go')
-rw-r--r-- | internal/timeline/prepare.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/timeline/prepare.go b/internal/timeline/prepare.go index 8fbcb15a7..81d0ddc38 100644 --- a/internal/timeline/prepare.go +++ b/internal/timeline/prepare.go @@ -21,10 +21,10 @@ import ( "container/list" "context" "errors" - "fmt" "codeberg.org/gruf/go-kv" "github.com/superseriousbusiness/gotosocial/internal/db" + "github.com/superseriousbusiness/gotosocial/internal/gtserror" "github.com/superseriousbusiness/gotosocial/internal/log" ) @@ -129,7 +129,7 @@ func (t *timeline) prepareXBetweenIDs(ctx context.Context, amount int, behindID t.items.data.Remove(e) } // We've got a proper db error. - return fmt.Errorf("prepareXBetweenIDs: db error while trying to prepare %s: %w", entry.itemID, err) + return gtserror.Newf("db error while trying to prepare %s: %w", entry.itemID, err) } entry.prepared = prepared } |