diff options
Diffstat (limited to 'internal/processing/account')
-rw-r--r-- | internal/processing/account/statuses.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/processing/account/statuses.go b/internal/processing/account/statuses.go index 716157a14..1bdd3906b 100644 --- a/internal/processing/account/statuses.go +++ b/internal/processing/account/statuses.go @@ -52,8 +52,9 @@ func (p *Processor) StatusesGet( } if blocked { - err := errors.New("block exists between accounts") - return nil, gtserror.NewErrorNotFound(err) + // Block exists between accounts. + // Just return empty statuses. + return util.EmptyPageableResponse(), nil } } |